Use jobs when a batch should be processed by the worker queue instead of blocking the request. The jobs API uploads source files, creates a queued job record, and lets Convertly workers handle conversion or compression outside the request lifecycle.Documentation Index
Fetch the complete documentation index at: https://docs.convertly.sh/llms.txt
Use this file to discover all available pages before exploring further.
Jobs are storage-backed because workers need persisted source files. For storage-free processing, use synchronous
POST /api/convert or POST /api/compress.What jobs achieve
| Goal | How jobs help |
|---|---|
| Keep your app responsive | Your request returns once files are uploaded and the job is queued. |
| Process many files | Workers can handle larger batches within the limits of the user’s plan. |
| Track progress | Poll job status to show pending, processing, completed, or failed states. |
| Build workflows | Combine jobs with webhooks to continue work after conversion completes. |
Create a job
Poll status
pending, processing, completed, and failed.