Server Info
Returns general information about the streaming server.
Request
| Property | Value |
|---|---|
| Method | GET |
| URL | /api/server/info |
| Content-Type | application/json |
| Authentication | Bearer Token |
Request
curl -X GET "{BASE_URL}/api/server/info" \
-H "Authorization: Bearer YOUR_TOKEN"
Response Body
Metadata
| Parameter | Type | Description |
|---|---|---|
metadata.executionTime | integer | Request processing time in milliseconds |
metadata.generatedAt | integer | Response generation timestamp (Unix timestamp in ms) |
Server Info
| Parameter | Type | Description |
|---|---|---|
data.clusterManager | boolean | Indicates if the server has a cluster manager running |
data.playerProtocolVersion | integer | Player protocol version |
data.clusterProtocolVersion | string | Cluster protocol version |
data.appRootDIR | string | Root directory path for the application |
data.serverName | string | Name of the server instance |
data.applicationList | array | List of configured applications |
data.applicationList[].name | string | Application name |
data.applicationList[].type | string | Application type ("MONO", "EDGE", "ORIGIN", "TRANSCODE") |
data.version | string | Server version |
data.branch | string | Server branch |
Successful Response (200)
{
"metadata": {
"executionTime": 0,
"generatedAt": 1771865482755
},
"data": {
"clusterManager": true,
"playerProtocolVersion": 1,
"clusterProtocolVersion": "2.0.0",
"appRootDIR": "/srv/storm",
"serverName": "StormDev2",
"applicationList": [
{ "name": "mono", "type": "MONO" },
{ "name": "edge", "type": "EDGE" },
{ "name": "origin", "type": "ORIGIN" },
{ "name": "transcode", "type": "TRANSCODE" }
],
"version": "3.0.1",
"branch": "Main"
}
}
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.