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
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.chatgrid.ai/llms.txt

Use this file to discover all available pages before exploring further.

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
  }
}