Eranol LogoEranol
BlogCommunityDocumentationPricingSign In

General

OverviewGet Started

Universal

Add IntroAdd OutroAudio to VideoBackground AudioCaptions ApiComposeConcatConvert a video file to MP4Convert Audio to Mp3Convert Audio to wavConvert to JPGConvert to WebMConvert to WebPDenoiseExtract audio track from a videoExtract images from a videoGenerate a GIF from a videoHighlightsImageMergeNotifyOverlayProgress BarReframeRemove SilenceThumbnailTikTokTrimVerifyWatermarkZoom

General

DeleteImage StatusStatusTikTok StatusFFmpeg Results

Need help?

Contact Support

Status

GET

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.).

Guide

Overview

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.).

Example Response

[
  {
    "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
  }
]

Endpoint

Send your requests to the following URL using the specified HTTP method.

GET https://eranol.com/api/v1/ffmpeg/status/{job_id}

Example Request

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.

bash
curl -X GET "https://eranol.com/api/v1/ffmpeg/status/{job_id}" \
  -H "x-api-key: YOUR_API_KEY"

Example Response

Below is an example of a successful JSON response from this endpoint.

json
[
  {
    "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
  }
]

Response Status

A successful request will return one of the following HTTP status codes.

200 OKRequest was successful and data is returned in the response body.
401 UnauthorizedMissing or invalid API key.
429 Too Many RequestsRate limit exceeded. Try again later.