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

Cluster Viewer

Returns detailed information about a specific viewer session.

Request

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

Path Parameters

ParameterTypeRequiredDescription
viewerIdstringYesUnique identifier of the viewer session
Request
Code iconbash
curl -X GET "{BASE_URL}/api/cluster/viewers/{viewerId}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

Basic Info

ParameterTypeDescription
data.idstringUnique identifier of the viewer session
data.statestringConnection state
data.aliasNamestringViewer alias name (nullable)
data.harnessTypestringHarness type
data.applicationIdstringUnique identifier of the associated application
data.streamKeystringThe stream key that the viewer is currently watching
data.startTimeintegerConnection start time (Unix timestamp in ms)
data.durationintegerConnection duration in milliseconds

User Agent Data

ParameterTypeDescription
data.userAgentData.deviceTypestringDevice type
data.userAgentData.osNamestringOperating system name
data.userAgentData.osVersionstringOperating system version
data.userAgentData.browserNamestringBrowser name
data.userAgentData.browserVersionstringBrowser version
data.userAgentData.renderingEnginestringBrowser rendering engine

Connection Data

ParameterTypeDescription
data.connectionData.remoteAddressstringClient IP address
data.connectionData.inBandwidthintegerIncoming bandwidth in bytes/sec
data.connectionData.outBandwidthintegerOutgoing bandwidth in bytes/sec
data.connectionData.inTotalBytesintegerTotal incoming bytes
data.connectionData.outTotalBytesintegerTotal outgoing bytes

Health Data

ParameterTypeDescription
data.healthData.healthScoreintegerOverall health score (0-100, 0 when no data available)
data.healthData.healthGradestringOverall health grade
data.healthData.latencyintegerLatency in milliseconds
data.healthData.latencyGradestringLatency grade
data.healthData.bufferDeviationnumberBuffer deviation value
data.healthData.bufferDeviationGradestringBuffer deviation grade
data.healthData.queuePressurenumberQueue pressure value
data.healthData.queuePressureGradestringQueue pressure grade
data.healthData.droppedFramesRationumberDropped frames ratio (-1 if no data)
data.healthData.droppedFramesGradestringDropped frames grade

Player Report

ParameterTypeDescription
data.playerReport.playbackRatenumberCurrent playback rate
data.playerReport.bandwidthCapintegerBandwidth cap in bytes/sec (0 = no limit)
data.playerReport.latencyintegerPlayer-reported latency in milliseconds
data.playerReport.bufferSizenumberCurrent buffer size in seconds

Geo Data

ParameterTypeDescription
data.geoData.continentNamestringContinent name
data.geoData.countryNamestringCountry name
data.geoData.countryCodestringISO country code
data.geoData.cityNamestringCity name
data.geoData.postalCodestringPostal code
data.geoData.latitudenumberLatitude coordinate
data.geoData.longitudenumberLongitude coordinate

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "userAgentData": {
      "deviceType": "DESKTOP",
      "osVersion": "10.0",
      "browserVersion": "146.0.0.0",
      "browserName": "Chrome",
      "renderingEngine": "WebKit",
      "osName": "Windows 10/11"
    },
    "aliasName": null,
    "connectionData": {
      "outTotalBytes": 9922477,
      "outBandwidth": 447619,
      "inTotalBytes": 1811,
      "inBandwidth": 63,
      "remoteAddress": "83.11.198.11"
    },
    "geoData": {
      "cityName": "Torun",
      "countryCode": "PL",
      "latitude": 53.0176,
      "postalCode": "87-100",
      "countryName": "Poland",
      "continentName": "Europe",
      "longitude": 18.6202
    },
    "harnessType": "STORM_MSE_VIEWER",
    "streamKey": "123",
    "duration": 21784,
    "healthData": {
      "bufferDeviationGrade": "Good",
      "bufferDeviation": 0.018340000000000002,
      "queuePressureGrade": "Very Good",
      "latency": 42,
      "droppedFramesGrade": "No Data",
      "droppedFramesRatio": -1,
      "latencyGrade": "Good",
      "healthScore": 0,
      "healthGrade": "No Data",
      "queuePressure": 0
    },
    "startTime": 1770283102021,
    "id": "v_88uzmg57ml98uni0",
    "state": "PUBLISHED",
    "playerReport": {
      "playbackRate": 1,
      "bandwidthCap": 0,
      "latency": 101,
      "bufferSize": 0.6801
    },
    "applicationId": "c_y7q39097ml5glmh6"
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1770283123999
  }
}

Error Responses

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