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://v1.api.altostrat.io/api/keys \
--header 'Authorization: Bearer <token>'[
{
"id": "api_key_2m3h5n7k9j8g7f6e5d4c3b2a",
"object": "api_key",
"name": "Production automation",
"key_prefix": "alto_sk_ab123",
"client_id": "C3HqXo4o6Yb5Kp0oV9x8",
"created_at": "2026-04-20T00:00:00Z",
"status": "active",
"permissions": [
"sites:read",
"scripts:write"
],
"last_used_at": null
}
]Returns the API keys owned by the current organization. Secrets are never returned from this endpoint.
curl --request GET \
--url https://v1.api.altostrat.io/api/keys \
--header 'Authorization: Bearer <token>'[
{
"id": "api_key_2m3h5n7k9j8g7f6e5d4c3b2a",
"object": "api_key",
"name": "Production automation",
"key_prefix": "alto_sk_ab123",
"client_id": "C3HqXo4o6Yb5Kp0oV9x8",
"created_at": "2026-04-20T00:00:00Z",
"status": "active",
"permissions": [
"sites:read",
"scripts:write"
],
"last_used_at": null
}
]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.
Authenticate with an SDX user access token that has permission to manage API keys.
API keys for the organization.
^api_key_[0-9A-Za-z]{27}$"api_key_2m3h5n7k9j8g7f6e5d4c3b2a"
api_key "api_key"
"Production automation"
The visible prefix of the secret. Use this to identify a key without exposing its secret.
"alto_sk_ab123"
The backing machine-to-machine client identifier.
"C3HqXo4o6Yb5Kp0oV9x8"
"2026-04-20T00:00:00Z"
"active"
["sites:read", "scripts:write"]
null
Was this page helpful?