cURL
curl --request GET \ --url https://mainnet.dkn.dria.co/api/v0/batch/all_jobs \ --header 'x-api-key: <api-key>'
{ "success": true, "jobs": [ { "status": "completed", "created_at": "2023-10-01T12:00:00.000Z", "file_id": "123e4567-e89b-12d3-a456-426614174000", "task_count": 100, "error_message": null, "result_url": null } ] }
Get all jobs
API Key
Returns all jobs
Whether the request was successful
The list of jobs
Show child attributes
The status of the job
"completed"
The date and time when the job was created
"2023-10-01T12:00:00Z"
The ID of the file associated with the job
"123e4567-e89b-12d3-a456-426614174000"
The number of tasks associated with the job
100
The URL of the result file if the job is completed
null
The error message if the job failed
[ { "status": "completed", "created_at": "2023-10-01T12:00:00.000Z", "file_id": "123e4567-e89b-12d3-a456-426614174000", "task_count": 100, "error_message": null, "result_url": null }]