List jobs
GET
/api/v1/jobs
const url = 'https://dashboard.justcrawl.io/api/v1/jobs';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://dashboard.justcrawl.io/api/v1/jobs \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” page
integer
Page number (default 1)
pageSize
integer
Items per page (default 25, max 100)
status
string
Filter by job status
workflowId
string
Filter by workflow ID
Responses
Section titled “ Responses ”Paginated list of jobs
Media type application/json
object
items
Array<object>
object
id
string format: uuid
status
string
url
string
workflowId
string format: uuid
version
integer
providerId
string
statusCode
integer
latencyMs
integer
errorType
string
errorMessage
string
scheduleId
string format: uuid
createdAt
string format: date-time
completedAt
string format: date-time
total
integer
Example
{ "items": [ { "status": "queued" } ]}