cURL
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>" }
Get detailed job information including input, output, error, ML info, and billing.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response
Detailed job information.
Was this page helpful?