List jobs
Query parameters
number
default:"50"
Maximum number of jobs to return (pagination).
number
default:"0"
Number of jobs to skip (pagination offset).
string
Filter by job status. One of:
pending, processing, completed, error, cancelled.Response
This endpoint serves database rows as they are stored. Field names aresnake_case, not camelCase, and timestamps are epoch milliseconds, not ISO 8601 strings.
array
number
Number of jobs in this response, not the total matching the filter.
Video Status returns the same jobs in a
converted shape:
camelCase keys and ISO 8601 timestamps. The two endpoints
do not agree on field names by design, one serves rows and the other serves a
view model.Example
Retry job
Path parameters
string
required
ID of the job to retry. Must have
error status.Response
200 success · 400 job not in error state · 500 error
Example
Cancel job
Path parameters
string
required
ID of the job to cancel. Must have
pending status.Response
200 success · 400 job not pending · 500 error
Example
Delete job
Path parameters
string
required
ID of the job to delete.
Response
200 success · 400 failed · 500 error
Example
Related
Queue Statistics
Aggregate counts per status.
Queue Events (SSE)
Real-time progress updates.
Video Status
Check processing status by file path.