Skip to content

Batch poll job statuses

POST
/api/v1/jobs/batch-status
curl --request POST \
--url https://dashboard.justcrawl.io/api/v1/jobs/batch-status \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "jobIds": [ "example" ] }'
Media type application/json
object
jobIds
required
Array<string>
Example generated
{
"jobIds": [
"example"
]
}

Array of job statuses

Media type application/json
object
jobs
Array<object>
object
id
string format: uuid
status
string
Allowed values: queued running completed failed
url
string
workflowId
string format: uuid
version
integer
providerId
string
nullable
statusCode
integer
nullable
latencyMs
integer
nullable
errorType
string
nullable
errorMessage
string
nullable
scheduleId
string format: uuid
nullable
createdAt
string format: date-time
completedAt
string format: date-time
nullable
Example
{
"jobs": [
{
"status": "queued"
}
]
}