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

Alias

Returns detailed information about a specific stream key alias.

Request

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

Path Parameters

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

Response Body

Alias Object

ParameterTypeDescription
data.attributes.aliasNamestringAlias key (alternative name for the stream)
data.attributes.streamKeystringTarget stream key that the alias points to
data.attributes.isPermanentbooleanIndicates if the alias is permanent
data.attributes.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": {
    "attributes": {
      "aliasName": "omen",
      "streamKey": "domen",
      "isPermanent": true,
      "streamExists": false
    }
  },
  "meta": {
    "executionTime": 0,
    "generatedAt": 1766061887431
  }
}

Error Responses

Alias Not Found (404)

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