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

Server Info

Returns general information about the streaming server.

Request

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

Response Body

Metadata

ParameterTypeDescription
metadata.executionTimeintegerRequest processing time in milliseconds
metadata.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)

Server Info

ParameterTypeDescription
data.clusterManagerbooleanIndicates if the server has a cluster manager running
data.playerProtocolVersionintegerPlayer protocol version
data.clusterProtocolVersionstringCluster protocol version
data.appRootDIRstringRoot directory path for the application
data.serverNamestringName of the server instance
data.applicationListarrayList of configured applications
data.applicationList[].namestringApplication name
data.applicationList[].typestringApplication type ("MONO", "EDGE", "ORIGIN", "TRANSCODE")
data.versionstringServer version
data.branchstringServer branch
Successful Response (200)
Code iconjson
{
  "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)

ParameterTypeDescription
messagestringHuman-readable error message
Error Response
Code iconjson
{
  "message": "Error message"
}
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.