/jobs/{id}
Request all information about a specific job.
Get Job Status
Path Parameters
Name
Type
Description
Headers
Name
Type
Description
{
"id": string,
"createdAt": string,
"status": string, // CREATED, RUNNING, FAILED, COMPLETED
"type": string, // the type of job (e.g. "guess-shape")
"pages": number, // the number of billed pages
"fileName": string,
"result": {...} | null, // The result of your job.
"urls": {
"get": string // Query this URL to get the status/result of your job
}
}{
"error": string
}{
"error": string
}Example Usage
Last updated