Storm docs logo
Search the docs.../
Explore Storm Products

Transcode Task

Returns detailed information about a specific transcoding task.

Request

PropertyValue
MethodGET
URL/api/transcode/task/{taskId}
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X GET "{BASE_URL}/api/transcode/task/{taskId}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Path Parameters

ParameterTypeRequiredDescription
taskIdstringYesUnique identifier of the task
Request
Code iconbash
curl -X GET "{BASE_URL}/api/transcode/task/{taskId}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

Task Object

ParameterTypeDescription
data.idstringUnique identifier of the task
data.typestringTask type
data.statestringTask state
data.applicationNamestringApplication name
data.streamKeystringStream key
data.subStreamstringSub-stream name
data.startTimeintegerTask start time (Unix timestamp in ms)
data.durationintegerTask duration in milliseconds
data.readPacketsintegerNumber of packets read
data.writePacketsintegerNumber of packets written
data.errorCountintegerNumber of errors encountered
data.isReaderbooleanIndicates if task is reading data
data.isWriterbooleanIndicates if task is writing data

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "id": "p_f81yhse9mj1x6nk8",
    "type": "FILE_READER",
    "state": "RUNNING",
    "applicationName": "origin",
    "streamKey": "f1",
    "subStream": "native",
    "startTime": 1765486678488,
    "duration": 306190174,
    "readPackets": 10234345,
    "writePackets": 0,
    "errorCount": 0,
    "isReader": true,
    "isWriter": true
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1765792868662
  }
}

Error Responses

Task Not Found (404)

ParameterTypeDescription
messagestringHuman-readable error message
Code iconjson
{
  "message": "Task not found"
}
Support Needed?

Create a free ticket and our support team will provide you necessary assistance.

Blog
Support
About us
Patents
Term of use
Privacy policy
Contact
©2026 Storm Streaming Media. All Rights Reserved.