Skip to content

Results are limited to the current section: Cloud services

Product news

Get Job

GET
/api/v2/jobs/{job_id}
curl --request GET \
--url https://example.com/api/v2/jobs/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0 \
--header 'Authorization: Bearer <token>'

Retrieve the current state of a single job including status and timing information.

Job statuses follow the lifecycle: PENDING → RUNNING → DONE | ERROR | CANCELED.

Returns: The full job details excluding the result payload. To download results, request a pre-signed URL via GET /api/v1/jobs/{job_id}/results_link.

job_id
required
Job Id
string format: uuid

Successful Response

Media typeapplication/json
NonPaginatedResponse[ProducedFullJobResponse]
object
data
Any of:
Examplegenerated
{
"data": "example"
}

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}