API Reference
Job Status
Query status and output information for a job.
API Reference
Query status and output information for a job.
GET /v1/jobs/{job_id}
curl -X GET https://api.removebgvideo.com/v1/jobs/{job_id} \
-H "X-Api-Key: YOUR_API_KEY"| Status | Meaning |
|---|---|
| pending | Accepted, waiting for processing |
| processing | RunPod worker is processing |
| completed | Output available |
| failed | Job failed, check error |
| Field | Type | Description |
|---|---|---|
| id | string | Job id |
| status | string | Job status |
| progress | number | 0-100 progress |
| output_url | string|null | Processed asset URL when completed |
| error | string|null | Error message when failed |
| created_at | string | UTC time |
| duration_seconds | number|null | Output duration |
| billing_status | string|null | Credit charge status |
| Check | How to Verify |
|---|---|
| Authentication | Call endpoint with valid and invalid key, confirm 200 vs 401 |
| Rate limits | Burst test and confirm 429 handling with backoff |
| Idempotency | Retry same request and verify no duplicate side effects |
| Observability | Confirm request_id/job_id appears in logs and dashboards |
Job Status belongs to the API Reference section and covers query status and output information for a job.
The page is written for developers and operators who need predictable video background removal behavior in production, not just a one-off demo request.
Before you promote this workflow, test it with at least one short clip, one longer clip, and one visually difficult clip from your actual product or customer segment.
For support and debugging, persist the original input reference, selected model, output format, credit usage, and final job status alongside your internal user or project id.
| Question | Answer |
|---|---|
| Is Job Status required for every integration? | Use it when your integration calls this endpoint directly; otherwise review it to understand the contract behind SDK helpers. |
| What should I test before going live? | Verify success, failure, timeout, retry, and insufficient-credit paths with realistic video files and the same output format you plan to ship. |
| How does this connect to the rest of the API? | Most workflows connect upload or source URL handling, job creation, status polling, output retrieval, usage tracking, and operational logging. |