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 GET \
--url https://signin.altostrat.io/authorizeThis is the starting point for user authentication. The Altostrat web application redirects the user’s browser to this endpoint to begin the OAuth 2.0 Authorization Code Flow with PKCE.
curl --request GET \
--url https://signin.altostrat.io/authorizeDocumentation Index
Fetch the complete documentation index at: https://altostrat.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
Specifies the response type. code is used for the Authorization Code Flow.
code, token, id_token, code token, code id_token, token id_token, code token id_token The application's unique identifier.
The URL to which the user is redirected after authentication. Must be an allowed callback URL.
A space-separated list of permissions. offline_access is required to receive a refresh token.
An opaque value used to prevent CSRF attacks.
The Base64-URL-encoded hash of the code_verifier.
The method used to generate the challenge. S256 is recommended.
S256, plain Redirects the user to the Altostrat login page. After success, redirects back to the redirect_uri.
Was this page helpful?