Jobs
Job management. Check status, get results, and list processing jobs.
Get the current status and results of a processing job.
Status Values
pending
Job created, waiting to start
queued
Job in queue, waiting for GPU worker
processing
Job is being processed
completed
Job finished successfully
failed
Job failed with error
Response Fields
status: Current job status
result: Download URLs (when completed)
error: Error message (when failed)
progress: Processing progress 0-100 (when processing)
cost: Credits charged for this job
Polling Recommendation
Poll every 5-10 seconds until status is completed or failed.
How to Authenticate
- Get your token from Timbr Dashboard
- Click the Authorize button above
- Enter only the token (e.g.,
TBR_abc123def456) - Click Authorize then Close
Important
- โ
Correct:
TBR_8b3364b5a772328a - โ Wrong:
Bearer TBR_8b3364b5a772328a
The 'Bearer ' prefix is added automatically by Swagger UI.
Job status retrieved
Unauthorized - Invalid or missing Timbr token
Access denied
Job not found
Validation Error
List all jobs for the authenticated user with pagination and optional filtering.
Query Parameters
page
integer
1
Page number (1-indexed)
page_size
integer
20
Jobs per page (max 100)
status
string
null
Filter by status
Status Filter Values
pending- Jobs waiting to startqueued- Jobs waiting for GPU workerprocessing- Jobs currently runningcompleted- Successfully finished jobsfailed- Jobs that encountered errors
Pagination
Response includes has_more field to indicate if more pages exist.
How to Authenticate
- Get your token from Timbr Dashboard
- Click the Authorize button above
- Enter only the token (e.g.,
TBR_abc123def456) - Click Authorize then Close
Important
- โ
Correct:
TBR_8b3364b5a772328a - โ Wrong:
Bearer TBR_8b3364b5a772328a
The 'Bearer ' prefix is added automatically by Swagger UI.
Page number (1-indexed)
1Jobs per page (max 100)
20Filter by job status
Valid job status filter values for list_jobs endpoint.
SECURITY: Using enum prevents SQL injection via status parameter by ensuring only known, safe values can be passed to database queries.
Job list retrieved
Unauthorized - Invalid or missing Timbr token
Validation Error
Last updated