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

Cluster Application List Batch

Returns information about multiple cluster applications by their IDs. Returns found and not found applications separately.

Request

PropertyValue
MethodPOST
URL/api/cluster/applications/batch
Content-Typeapplication/json
AuthenticationBearer Token
Request
Code iconbash
curl -X POST "{BASE_URL}/api/cluster/applications/batch" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"key": "value"}'

Request Body

ParameterTypeRequiredDescription
data.namesstring[]YesArray of application IDs
Request Body
Code iconjson
{
  "data": {
    "names": ["c_iq8mgjtxmhyw0myw", "c_sgvxwnwbmk3998oy", "c_c0zy25y2mk3998oy"]
  }
}

Response Body

CodeDescription
200Success
400Bad Request - Invalid parameters
401Unauthorized - Invalid or missing token
429Too Many Requests - Rate limit exceeded
500Internal Server Error

Result Arrays

ParameterTypeDescription
data.foundarrayList of found applications
data.notFoundstring[]List of IDs that were not found

Application Object (in data.found[])

ParameterTypeDescription
data.found[].idstringUnique application ID
data.found[].applicationNamestringApplication name
data.found[].typeORIGIN | TRANSCODE | EDGEApplication type
data.found[].statestringConnection state
data.found[].serverNamestringServer display name
data.found[].hostNamestringServer hostname
data.found[].groupNamestringServer group name
data.found[].streamCountintegerCurrent number of active streams
data.found[].streamLimitinteger | nullMaximum streams allowed (null = unlimited)
data.found[].viewerCountintegerCurrent number of connected viewers
data.found[].viewerLimitinteger | nullMaximum viewers allowed (null = unlimited)
data.found[].inBandwidthintegerIncoming bandwidth in bytes/sec
data.found[].outBandwidthintegerOutgoing bandwidth in bytes/sec
data.found[].bandwidthLimitinteger | nullBandwidth limit in bytes/sec (null = unlimited)
data.found[].cpuUsagenumberCPU usage percentage (0-100)
data.found[].memoryUsageintegerMemory usage in bytes
data.found[].memoryTotalintegerTotal available memory in bytes
data.found[].transcodingTaskCountinteger | nullCurrent active transcoding tasks (null if N/A)
data.found[].transcodingTaskLimitinteger | nullMaximum transcoding tasks (null if N/A)

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "found": [
      {
        "id": "c_sgvxwnwbmk3998oy",
        "applicationName": "edge",
        "type": "EDGE",
        "state": "AUTHENTICATED",
        "serverName": "StormDev2",
        "hostName": "stormdev2.web-anatomy.com",
        "groupName": "Premise",
        "streamCount": 0,
        "streamLimit": 1000,
        "viewerCount": 0,
        "viewerLimit": 1000,
        "inBandwidth": 0,
        "outBandwidth": 0,
        "bandwidthLimit": null,
        "cpuUsage": 0.06,
        "memoryUsage": 4988797916,
        "memoryTotal": 25769803776,
        "transcodingTaskCount": null,
        "transcodingTaskLimit": null
      },
      {
        "id": "c_c0zy25y2mk3998oy",
        "applicationName": "origin",
        "type": "ORIGIN",
        "state": "AUTHENTICATED",
        "serverName": "StormDev2",
        "hostName": "stormdev2.web-anatomy.com",
        "groupName": "Premise",
        "streamCount": 0,
        "streamLimit": 1000,
        "viewerCount": 0,
        "viewerLimit": null,
        "inBandwidth": 0,
        "outBandwidth": 0,
        "bandwidthLimit": null,
        "cpuUsage": 0.06,
        "memoryUsage": 4988797916,
        "memoryTotal": 25769803776,
        "transcodingTaskCount": 0,
        "transcodingTaskLimit": 5
      }
    ],
    "notFound": ["c_iq8mgjtxmhyw0myw"]
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1767789482482
  }
}

Error Response (4xx/5xx)

ParameterTypeDescription
messagestringHuman-readable error message
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.