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

Application

Returns detailed information about a specific application.

Request

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

Path Parameters

ParameterTypeRequiredDescription
appNamestringYesApplication name
Request
Code iconbash
curl -X GET "{BASE_URL}/api/applications/{appName}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

Application Info

ParameterTypeDescription
data.idstringUnique identifier of the application
data.namestringApplication name
data.typeMONO | ORIGIN | TRANSCODE | EDGEApplication type
data.classstringInternal class name of the application
data.startDateintegerApplication start time (Unix timestamp in ms)
data.streamCountintegerNumber of currently active streams
data.createdStreamsintegerTotal number of streams created since start
data.viewerCountintegerNumber of connected viewers
data.connectionCountintegerTotal number of connections
data.inBandwidthintegerIncoming bandwidth in bytes/sec
data.outBandwidthintegerOutgoing bandwidth in bytes/sec
data.inTotalBytesintegerTotal incoming bytes
data.outTotalBytesintegerTotal outgoing bytes
data.clusterTypebooleanIndicates if this is a cluster application type
data.clusterConnectionbooleanIndicates if cluster connection is active

Cluster Connection Data

ParameterTypeDescription
data.clusterConnectionDataobjectCluster connection details (if applicable)
data.clusterConnectionData.cmIdentitystringCluster manager identity
data.clusterConnectionData.connectionStatestringConnection state
data.clusterConnectionData.startDateintegerConnection start time (Unix timestamp in ms)
data.clusterConnectionData.latencyintegerConnection latency in milliseconds
data.clusterConnectionData.packetReceivedintegerTotal packets received
data.clusterConnectionData.packetSendintegerTotal packets sent

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "id": "edge",
    "name": "edge",
    "type": "EDGE",
    "class": "EdgeApplication",
    "startDate": 1764671262587,
    "streamCount": 2,
    "createdStreams": 8,
    "viewerCount": 0,
    "connectionCount": 0,
    "inBandwidth": 669299,
    "outBandwidth": 0,
    "inTotalBytes": 160449978090,
    "outTotalBytes": 0,
    "clusterType": true,
    "clusterConnection": true,
    "clusterConnectionData": {
      "cmIdentity": "mother superior",
      "connectionState": "AUTHENTICATED",
      "startDate": 1764671267591,
      "latency": 0,
      "packetReceived": 34688,
      "packetSend": 53170
    }
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1764844611982
  }
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
Application Not Found (404)
Code iconjson
{
  "message": "Application not found"
}
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.