Skip to main content
GET
/
api
/
v0
/
batch
/
all_jobs
Get All Batch Jobs
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
    }
  ]
}

Authorizations

x-api-key
string
header
required

API Key

Response

200 - application/json

Returns all jobs

success
boolean
required

Whether the request was successful

jobs
object[]
required

The list of jobs

Example:
[
{
"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
}
]