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

Cluster Alias List

Returns a paginated list of stream aliases in the cluster.

Request

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

Response Body

Pagination

ParameterTypeDescription
data.totalItemsintegerTotal number of aliases
data.itemsPerPageintegerNumber of items per page
data.totalPagesintegerTotal number of pages
data.currentPageintegerCurrent page number
data.hasPreviousbooleanIndicates if a previous page exists
data.hasNextbooleanIndicates if a next page exists

Alias Object

ParameterTypeDescription
data.list[].streamKeystringStream key associated with the alias
data.list[].aliasKeystringAlias name
data.list[].streamExistsbooleanIndicates if the associated stream exists

Metadata

ParameterTypeDescription
meta.executionTimeintegerRequest processing time in milliseconds
meta.generatedAtintegerResponse generation timestamp (Unix timestamp in ms)
Successful Response (200)
Code iconjson
{
  "data": {
    "totalItems": 1,
    "itemsPerPage": 10,
    "totalPages": 1,
    "hasPrevious": false,
    "hasNext": false,
    "list": [
      {
        "streamKey": "test",
        "aliasKey": "alias",
        "streamExists": false
      }
    ],
    "currentPage": 1
  },
  "meta": {
    "executionTime": 24,
    "generatedAt": 1771957381936
  }
}

Error Response (4xx/5xx)

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