GET
/
parse
/
statements
/
{job_id}
curl --request GET \
  --url https://api.invaro.ai/api/v1/parse/statements/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "job_id": "job_1739261168870934041",
    "status": "completed",
    "file_id": "sample_invoice.pdf",
    "created_at": "2025-02-11T08:19:37Z",
    "updated_at": "2025-02-11T08:19:53Z",
    "progress": 45,
    "results": {
      "account_info": {},
      "transactions": [
        "<any>"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

ID of the processing job

Response

200 - application/json
Job status retrieved successfully
success
boolean
Example:

true

data
object