Skip to main content
GET
/
api
/
jobs
/
{job_id}
Get Job Detail
curl --request GET \
  --url https://api.example.com/api/jobs/{job_id} \
  --header 'Authorization: Bearer <token>'
{
  "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "<string>",
  "status": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "started_at": "2023-11-07T05:31:56Z",
  "finished_at": "2023-11-07T05:31:56Z",
  "created_by": {},
  "resource": {},
  "input": {},
  "output": {},
  "error": {},
  "ml": {},
  "billing": {},
  "dataset_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "dataset_version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "file_counts": {},
  "progress": 123,
  "error_message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

X-API-Key
string | null

Path Parameters

job_id
string<uuid>
required

Response

Successful Response

Detailed job information.

job_id
string<uuid>
required
type
string
required
status
string
required
created_at
string<date-time>
required
started_at
string<date-time> | null
finished_at
string<date-time> | null
created_by
Created By · object
resource
Resource · object
input
Input · object
output
Output · object
error
Error · object
ml
Ml · object
billing
Billing · object
dataset_id
string<uuid> | null
dataset_version_id
string<uuid> | null
file_counts
File Counts · object
progress
number | null
error_message
string | null