POST
/
api
/
v1
/
parse
curl --request POST \
  --url https://api.invaro.ai/api/v1/api/v1/parse \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "document_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "callback_url": "https://your-callback-url.com/webhook"
}'
{
  "success": true,
  "data": {
    "job_id": "job_123",
    "status": "pending",
    "created_at": "2024-01-07T10:00:00Z",
    "updated_at": "2024-01-07T10:00:00Z"
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
document_id
string
required

UUID of the document uploaded via /parse/upload endpoint.

callback_url
string

Optional URL to send a webhook notification upon completion.

Example:

"https://your-callback-url.com/webhook"

Response

200 - application/json
Processing job accepted
success
boolean
Example:

true

data
object