Jobs

Not authenticated— sign in to auto-fill your API key in code examples

Get job status

GET/v1/jobs/:jobId
ParameterRequiredDescription
jobIdstring
required
Response200
{
  "ok": true,
  "job": {
    "id": "job_01HQXYZ",
    "type": "invoice_processing",
    "status": "running",
    "progress": 72.5,
    "result": null,
    "error": null,
    "createdAt": "2026-03-31T10:00:00Z",
    "updatedAt": "2026-03-31T10:03:12Z"
  }
}
Response401
{
  "ok": false,
  "error": "Authentication required",
  "code": "UNAUTHORIZED",
  "details": {}
}
Response404
{
  "ok": false,
  "error": "Resource not found",
  "code": "NOT_FOUND",
  "details": {}
}