Encoding JobsList Active Jobs by Zone

List Active Jobs by Zone

List all active encoding jobs for a specific zone.

curl -X GET "https://api.5centscdn.com/v2/transcoding/jobs/15" \
  -H "Content-Type: application/json" \
  -H "X-API-Key: YOUR_API_KEY"
[
  {
    "id": 6643,
    "jobid": "1346186",
    "profileid": "1",
    "infile": "/sample-video.mp4",
    "outfile": "/mp4/sample-video_720p.mp4",
    "percent": "100",
    "log": "",
    "error": "",
    "created_at": "2026-04-26 17:54:34",
    "updated_at": "2026-04-26 17:57:29",
    "timings": {
      "process": {
        "start": "1777226080001",
        "end": "1777226249617"
      },
      "infile": {
        "check": {
          "start": "1777226080073",
          "end": "1777226081293"
        },
        "probe": {
          "start": "1777226081293",
          "end": "1777226083693"
        }
      },
      "download": {
        "start": "1777226083767",
        "end": "1777226087759"
      },
      "encoder": {
        "start": "1777226087832",
        "end": "1777226249331"
      },
      "outfile": {
        "check": {},
        "probe": {
          "start": "1777226249331",
          "end": "1777226249367"
        },
        "segment": {}
      },
      "thumbs": {
        "process": {}
      },
      "upload": {
        "start": "1777226249579",
        "end": "1777226249606"
      }
    },
    "profile": "720p"
  }
]
GET
/transcoding/jobs/{zoneId}
GET
Base URLstring

Target server for requests. Edit to use your own host.

API Key (header: X-API-Key)
X-API-Keystring
Required

API key (sent in header)

path
zoneIdinteger
Required

ID of the Push Zone (fs_pushzones.id).

Request Preview
Response

Response will appear here after sending the request

Authentication

header
X-API-Keystring
Required

API Key for authentication. Provide your API key in the header.

Path Parameters

zoneIdinteger
Required

ID of the Push Zone (fs_pushzones.id).

Example:
15

Responses

idinteger

Unique stream or record identifier.

jobidstring

Unique identifier of the encoding job.

profileidstring

Transcoding profile identifier used for this job.

infilestring

Input file relative path.

outfilestring

Output file relative path.

percentstring

Encoding completion percentage (0-100).

logstring

Encoder process log output.

errorstring

Error message if the encoding job failed.

created_atstring

Timestamp when this record was created.

updated_atstring

Timestamp when this record was last updated.

timingsobject

Timing breakdown for each stage of the encoding pipeline.

profilestring

Codec or encoder profile name.