Get the current status of a job. Returns job status, progress, timestamps, and result data if completed. Works for all job types (merge, convert, extract, etc.).
Get the current status of a job.
Returns job status, progress, timestamps, and result data if completed. Works for all job types (merge, convert, extract, etc.).
[
{
"job_id": "37a8d929-1bb1-40b8-bd81-1a4a633b834b",
"status": "completed",
"duration": 58.875,
"progress": null,
"created_at": 1770492104.6935267,
"resolution": "1280x720",
"result_url": "https://eranol.com/api/v1/ffmpeg/file/af390718-7794-4b36-b9c3-2693e922cf18.mp4",
"started_at": 1770492104.6968493,
"completed_at": 1770492127.4626331
}
]
Send your requests to the following URL using the specified HTTP method.
GET https://eranol.com/api/v1/ffmpeg/status/{job_id}Use the following cURL command to make a request to this API endpoint. Replace YOUR_API_KEY with your actual API key from the dashboard.
curl -X GET "https://eranol.com/api/v1/ffmpeg/status/{job_id}" \
-H "x-api-key: YOUR_API_KEY"Below is an example of a successful JSON response from this endpoint.
[
{
"job_id": "37a8d929-1bb1-40b8-bd81-1a4a633b834b",
"status": "completed",
"duration": 58.875,
"progress": null,
"created_at": 1770492104.6935267,
"resolution": "1280x720",
"result_url": "https://eranol.com/api/v1/ffmpeg/file/af390718-7794-4b36-b9c3-2693e922cf18.mp4",
"started_at": 1770492104.6968493,
"completed_at": 1770492127.4626331
}
]A successful request will return one of the following HTTP status codes.