Cluster Transcode Status
Returns the current status of the cluster transcoding service.
Request
| Property | Value |
|---|---|
| Method | GET |
| URL | /api/cluster/transcode/status |
| Content-Type | application/json |
| Authentication | Bearer Token |
Request
curl -X GET "{BASE_URL}/api/cluster/transcode/status" \
-H "Authorization: Bearer YOUR_TOKEN"
Response Body
| Parameter | Type | Description |
|---|---|---|
data.nextEvaluationTime | integer | Next evaluation timestamp (Unix timestamp in ms) |
data.activeTranscodeTaskCount | integer | Number of currently active transcoding tasks |
data.evaluationInterval | integer | Evaluation interval in seconds |
data.maxTranscodeTaskCount | integer | Maximum number of concurrent transcoding tasks |
data.status | string | Transcode service status (e.g., "active") |
meta.executionTime | integer | Request processing time in milliseconds |
meta.generatedAt | integer | Response generation timestamp (Unix timestamp in ms) |
Successful Response (200)
{
"data": {
"nextEvaluationTime": 1771957940444,
"activeTranscodeTaskCount": 1,
"evaluationInterval": 30,
"maxTranscodeTaskCount": 15,
"status": "active"
},
"meta": {
"executionTime": 0,
"generatedAt": 1771957936625
}
}
Error Response (4xx/5xx)
| Parameter | Type | Description |
|---|---|---|
message | string | Human-readable error message |
Error Response
{
"message": "Error message"
}
Support Needed?
Create a free ticket and our support team will provide you necessary assistance.