Exporting

You can export all your processed receipts with a single API request. You can have only one export at a time, and each export is valid for 144 hours.

Requesting an export

Submitting a request while an export is already in progress will return a 429 Export already in progress error.

Example response:

{
  "id": "9fbb961fa3094f02a35cf9abd3eddbee",
  "hasPending": true
}
POST /v1/export

Retrieving export

Example response:

{
  "id": "9fbb961fa3094f02a35cf9abd3eddbee",
  "hasPending": false,
  "lastExport": {
    "exportedAt": "2024-04-25T12:34:56Z",
    "validThru": "2024-05-25T12:34:56Z",
    "downloadUrl": "https://example.com/download/9fbb961fa3094f02a35cf9abd3eddbee"
  }
}
GET /v1/export