Get job detail
GET
/api/v1/jobs/{id}
const url = 'https://dashboard.justcrawl.io/api/v1/jobs/example';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/example \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Job ID
Responses
Section titled “ Responses ”Job detail with execution trace
Media type application/json
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
Example
{ "status": "queued"}Job not found