Skip to main content
GET
/
v1
/
jobs
List jobs
curl --request GET \
  --url https://api.chatgrid.ai/v1/v1/jobs \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "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
    }
  ],
  "has_more": false,
  "cursor": null
}

Authorizations

Authorization
string
header
required

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

Query Parameters

status
enum<string>

Filter by job status.

Available options:
processing,
completed,
failed

Response

List of jobs.

object
enum<string>
Available options:
list
data
object[]
has_more
boolean
Example:

false

cursor
string | null
Example:

null