Skip to main content
GET
/
api
/
jobs
/
{job_id}
/
results
Get Job Results
curl --request GET \
  --url https://api.example.com/api/jobs/{job_id}/results \
  --header 'Authorization: Bearer <token>'
{
  "job_type": "<string>",
  "inference_results_uri": "<string>",
  "training_results_dict": {},
  "dataset_ingest_results_dict": {}
}

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

Response for typed job results.

job_type
string
required
inference_results_uri
string | null
training_results_dict
Training Results Dict · object
dataset_ingest_results_dict
Dataset Ingest Results Dict · object