Get the result of a completed job. Returns 202 if still processing, 200 with result data if completed, or 400 if the job failed. Works for all job types.
Get the result of a completed job.
Returns 202 if still processing, 200 with result data if completed, or 400 if the job failed. Works for all job types.
[
{
"url": "https://eranol.com/api/v1/ffmpeg/file/af390718-7794-4b36-b9c3-2693e922cf18.mp4",
"job_id": "37a8d929-1bb1-40b8-bd81-1a4a633b834b",
"duration": 58.875,
"filename": "af390718-7794-4b36-b9c3-2693e922cf18.mp4",
"resolution": "1280x720"
}
]
Send your requests to the following URL using the specified HTTP method.
GET https://eranol.com/api/v1/ffmpeg/result/{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/result/{job_id}" \
-H "x-api-key: YOUR_API_KEY"Below is an example of a successful JSON response from this endpoint.
[
{
"url": "https://eranol.com/api/v1/ffmpeg/file/af390718-7794-4b36-b9c3-2693e922cf18.mp4",
"job_id": "37a8d929-1bb1-40b8-bd81-1a4a633b834b",
"duration": 58.875,
"filename": "af390718-7794-4b36-b9c3-2693e922cf18.mp4",
"resolution": "1280x720"
}
]A successful request will return one of the following HTTP status codes.