Altostrat Studio is here — the AI-native network operations IDE for engineers running production. Terminal, diagrams, runbooks, and Copilot in one workspace. Get started →
curl --request POST \
--url https://v1.api.altostrat.io/fault/token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"expire_after_minutes": 60
}
'{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"type": "jwt",
"expires_in_minutes": 60,
"expires_at": "2025-10-21T13:00:00.000000Z",
"short_link": "https://altostr.at/aBcDeFg"
}Generates a short-lived JSON Web Token (JWT) that can be used to provide temporary, read-only access to specific fault data, typically for embedding in external dashboards.
curl --request POST \
--url https://v1.api.altostrat.io/fault/token \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"expire_after_minutes": 60
}
'{
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c",
"type": "jwt",
"expires_in_minutes": 60,
"expires_at": "2025-10-21T13:00:00.000000Z",
"short_link": "https://altostr.at/aBcDeFg"
}Documentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
API requests are authenticated using a JSON Web Token (JWT) provided in the Authorization header.
Specifies the duration for which the token will be valid.
The number of minutes from now that the token should expire.
1 <= x <= 4320060
The generated access token and its metadata.
A temporary access token object.
The JSON Web Token.
"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c"
The type of token.
"jwt"
The number of minutes until the token expires.
60
The exact timestamp when the token will expire.
"2025-10-21T13:00:00.000000Z"
A shortened URL that embeds the token for easy sharing.
"https://altostr.at/aBcDeFg"
Was this page helpful?