Guides
Troubleshooting
Common production issues and how to resolve them quickly.
Guides
Common production issues and how to resolve them quickly.
| Symptom | Likely Cause | Action |
|---|---|---|
| Job stays processing for too long | Queue backlog or large media | Poll with backoff and set timeout guardrails |
| 401/invalid_api_key | Wrong key or key disabled | Rotate key and verify environment mapping |
| 402/insufficient_credits | Account credits below required amount | Top up credits before retry |
| Loss of fine details | Model/format mismatch | Try original or pro, use higher source quality, avoid aggressive compression |
| Flicker between frames | Scene complexity + unstable segmentation | Use original/pro, avoid aggressive post smoothing, test on representative clips |
{
"incident_time": "2026-04-20T10:00:00Z",
"job_id": "job_xxx",
"model": "pro",
"output_format": "webm",
"symptom": "flicker / detail loss / timeout",
"http_status": 500,
"error_code": "internal_error",
"request_id": "req_xxx",
"source_video_meta": {
"duration_s": 12.3,
"resolution": "1920x1080",
"codec": "h264"
}
}Troubleshooting belongs to the Guides section and covers common production issues and how to resolve them quickly.
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 Troubleshooting required for every integration? | Use it when the topic affects your setup, quality target, or operational workflow. |
| 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. |