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/workspaces/{workspaceId} \
--header 'Authorization: Bearer <token>'{
"id": "ws_a1b2c3d4e5f6g7h8",
"name": "ACME Corporation",
"description": "Primary workspace for all ACME projects.",
"billing_mode": "pooled",
"pooled_seat_limit": 100,
"archived": false,
"created_at": "2025-10-29T00:40:06.000000Z",
"updated_at": "2025-10-29T00:40:06.000000Z",
"archived_at": null
}Retrieves the details of an existing workspace. You must be a member of the workspace to retrieve it.
curl --request GET \
--url https://v1.api.altostrat.io/workspaces/{workspaceId} \
--header 'Authorization: Bearer <token>'{
"id": "ws_a1b2c3d4e5f6g7h8",
"name": "ACME Corporation",
"description": "Primary workspace for all ACME projects.",
"billing_mode": "pooled",
"pooled_seat_limit": 100,
"archived": false,
"created_at": "2025-10-29T00:40:06.000000Z",
"updated_at": "2025-10-29T00:40:06.000000Z",
"archived_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.
Enter your JWT in the format: Bearer {token}
The ID of the workspace.
"ws_a1b2c3d4e5f6g7h8"
The requested workspace object.
Unique identifier for the workspace, prefixed with ws_.
"ws_a1b2c3d4e5f6g7h8"
The name of the workspace.
"ACME Corporation"
An optional description for the workspace.
"Primary workspace for all ACME projects."
The billing mode for the workspace. Determines how subscriptions and usage are handled.
single, assigned, pooled "pooled"
The total number of seats available in 'pooled' billing mode. This is null for other modes.
100
Whether the workspace is archived.
false
The timestamp when the workspace was created.
"2025-10-29T00:40:06.000000Z"
The timestamp when the workspace was last updated.
"2025-10-29T00:40:06.000000Z"
The timestamp when the workspace was archived.
null
Was this page helpful?