Skip to main content
GET
/
v1
/
jobs
/
{id}
curl "https://api.chatgrid.ai/v1/jobs/ccdd1122-3344-5566-7788-99aabbccddee" \
  -H "Authorization: Bearer cgk_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6"
{
  "object": "job",
  "data": {
    "id": "ccdd1122-3344-5566-7788-99aabbccddee",
    "type": "document_process",
    "status": "processing",
    "result": null,
    "error": null,
    "created_at": "2026-03-15T11:00:00.000Z",
    "completed_at": null
  }
}
id
string
required
Job UUID.
Poll this endpoint to check when an async job completes. The status field transitions from processing to either completed or failed.
curl "https://api.chatgrid.ai/v1/jobs/ccdd1122-3344-5566-7788-99aabbccddee" \
  -H "Authorization: Bearer cgk_live_a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6"
{
  "object": "job",
  "data": {
    "id": "ccdd1122-3344-5566-7788-99aabbccddee",
    "type": "document_process",
    "status": "processing",
    "result": null,
    "error": null,
    "created_at": "2026-03-15T11:00:00.000Z",
    "completed_at": null
  }
}