Skip to main content
GET
/
v1
/
ai
/
jobs
/
{job_id}
Get Job
curl --request GET \
  --url https://api.example.com/v1/ai/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "<string>",
  "status": "<string>",
  "progress": 123,
  "created_at": "<string>",
  "result": null,
  "error": "<string>",
  "finished_at": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Response

Successful Response

job_id
string
required
status
string
required
progress
number
required
created_at
string
required
result
unknown
error
string | null
finished_at
string | null