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

Alias List

Returns a paginated list of stream key aliases for an application.

Request

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

Path Parameters

ParameterTypeRequiredDescription
appNamestringYesApplication name
Request
Code iconbash
curl -X GET "{BASE_URL}/api/applications/{appName}/aliases" \
  -H "Authorization: Bearer YOUR_TOKEN"

Query Parameters

ParameterTypeRequiredDefaultDescription
pageintegerNo1Page number
rowsPerPageintegerNo10Number of items per page
orderBystringNo-Field name to sort by
order"asc" | "desc"No-Sort order
searchstringNo-Filter by alias key
With query parameters
Code iconbash
curl -X GET "{BASE_URL}/api/applications/{appName}/aliases?page=value&rowsPerPage=value&orderBy=value" \
  -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[].aliasKeystringAlias key
data.list[].streamKeystringTarget stream key that the alias points to
data.list[].isPermanentbooleanIndicates if the alias is permanent
data.list[].streamExistsbooleanIndicates if the target stream currently 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,
    "currentPage": 1,
    "hasPrevious": false,
    "hasNext": false,
    "list": [
      {
        "aliasKey": "omen",
        "streamKey": "domen",
        "isPermanent": true,
        "streamExists": false
      }
    ]
  },
  "meta": {
    "executionTime": 2,
    "generatedAt": 1766062027302
  }
}

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.