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

Cluster Alias

Returns detailed information about a specific stream alias.

Request

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

Path Parameters

ParameterTypeRequiredDescription
aliasNamestringYesThe alias name
Request With Parameters
Code iconbash
curl -X GET "{BASE_URL}/api/cluster/aliases/{aliasName}" \
  -H "Authorization: Bearer YOUR_TOKEN"

Response Body

ParameterTypeDescription
data.attributes.streamKeystringStream key associated with the alias
data.attributes.aliasNamestringAlias name
data.attributes.streamExistsbooleanIndicates if the associated stream exists
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "attributes": {
      "streamKey": "test",
      "aliasName": "alias",
      "streamExists": false
    }
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1771957542583
  }
}

Error Response (4xx/5xx)

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