Skip to main content
GET
/
v1
/
jobs
/
{id}
Get a job
curl --request GET \
  --url https://api.chatgrid.ai/v1/v1/jobs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "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
  }
}

Authorizations

Authorization
string
header
required

Pass your API key (prefixed cgk_) or a Supabase JWT in the Authorization: Bearer <token> header.

Path Parameters

id
string<uuid>
required

Job UUID.

Example:

"ccdd1122-3344-5566-7788-99aabbccddee"

Response

Job details.

object
enum<string>
Available options:
job
data
object