GET
/
api
/
v1
/
parse
/
{job_id}
curl --request GET \
  --url https://api.invaro.ai/api/v1/api/v1/parse/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "job_id": "job_1234567890",
    "status": "completed",
    "file_id": "1234567890_document.pdf",
    "created_at": "2024-01-07T10:00:00Z",
    "updated_at": "2024-01-07T10:05:00Z",
    "result": {}
  }
}

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 (obtained from POST /api/v1/parse or other processing endpoints)

Response

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

true

data
object