Jobs

List and retrieve async jobs

GET/v1/jobs200

List all jobs for your organization, filtered by mode (test/live). Supports pagination and optional status/type filters.

Query Parameters

ParameterTypeRequiredDescription
limitinteger (1-100)NoMaximum number of results to return (1-100, default: 50)
offsetintegerNoNumber of results to skip for pagination (default: 0)
statusstringNoCurrent job status
job_typestringNoFilter 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}200

Get the current status, input, and output of a specific job. Poll this endpoint until status is completed or failed.

Path Parameters

ParameterTypeRequiredDescription
jobIdstringYes

Response

{
  "data":  {
    "...":  "..."
  },
  "meta":  {
    "request_id":  "req_abc123",
    "timestamp":  "2026-03-12T10:00:00.000Z",
    "mode":  "live"
  }
}