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

Stream List (Batch)

Returns information about specific streams by their IDs.

Request

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

Request Body

ParameterTypeRequiredDescription
data.streamKeyIdsstring[]YesArray of stream IDs to retrieve
Request Body
Code iconjson
{
  "data": {
    "streamKeyIds": ["edge-f1"]
  }
}

Response Body

Result Arrays

ParameterTypeDescription
data.foundarrayArray of stream objects that were found
data.notFoundstring[]Array of stream IDs that were not found

Stream Object

ParameterTypeDescription
data.found[].idstringUnique identifier of the stream
data.found[].statestringStream state (e.g., "PUBLISHED")
data.found[].typestringStream type (e.g., "NATIVE_STREAM")
data.found[].applicationstringApplication name
data.found[].streamKeystringStream key
data.found[].startTimeintegerStream start time (Unix timestamp in ms)
data.found[].durationintegerStream duration in milliseconds
data.found[].viewerCountintegerCurrent number of viewers
data.found[].inBandwidthintegerIncoming bandwidth in bytes/sec
data.found[].outBandwidthintegerOutgoing bandwidth in bytes/sec
data.found[].inTotalBytesintegerTotal incoming bytes
data.found[].outTotalBytesintegerTotal outgoing bytes
data.found[].healthScorenumberStream health score (0-100)
data.found[].healthGradestringStream health grade
data.found[].allowedToPublishbooleanIndicates if publishing is allowed
data.found[].isAutoRemovablebooleanIndicates if stream can be auto-removed
data.found[].thumbnailPathstring|nullPath to stream thumbnail (null if unavailable)
data.found[].thumbnailTimestampintegerThumbnail generation timestamp
data.found[].subStreamsarrayArray of sub-stream variants
data.found[].subStreams[].streamKeystringSub-stream key
data.found[].subStreams[].namestringSub-stream name

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "found": [
      {
        "id": "edge-f1",
        "state": "PUBLISHED",
        "type": "NATIVE_STREAM",
        "application": "edge",
        "streamKey": "f1",
        "startTime": 1764683374353,
        "duration": 71770675,
        "viewerCount": 0,
        "inBandwidth": 166464,
        "outBandwidth": 0,
        "inTotalBytes": 33071526148,
        "outTotalBytes": 754730859,
        "healthScore": 15.41353430459101,
        "healthGrade": "Bad",
        "allowedToPublish": true,
        "isAutoRemovable": true,
        "thumbnailPath": null,
        "thumbnailTimestamp": 0,
        "subStreams": [
          {
            "streamKey": "f1",
            "name": "native"
          }
        ]
      }
    ],
    "notFound": [
      "nonexistentstream"
    ]
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1764755145028
  }
}

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.