Jobs
List and retrieve async jobs
GET
/v1/jobs200List all jobs for your organization, filtered by mode (test/live). Supports pagination and optional status/type filters.
Query Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer (1-100) | No | Maximum number of results to return (1-100, default: 50) |
offset | integer | No | Number of results to skip for pagination (default: 0) |
status | string | No | Current job status |
job_type | string | No | Filter by job type (e.g. drone_footage, markup_v2) |
Response
{
"data": {
"...": "..."
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-03-12T10:00:00.000Z",
"mode": "live"
}
}GET
/v1/jobs/{jobId}200Get the current status, input, and output of a specific job. Poll this endpoint until status is completed or failed.
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
jobId | string | Yes |
Response
{
"data": {
"...": "..."
},
"meta": {
"request_id": "req_abc123",
"timestamp": "2026-03-12T10:00:00.000Z",
"mode": "live"
}
}On this page