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/vpc/prefix-lists \
--header 'Authorization: Bearer <token>'[
{
"id": "prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpw",
"name": "Main Office IPs",
"description": "Public IP ranges for the main office.",
"status": "active",
"sites": [],
"prefixes": []
},
{
"id": "prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpz",
"name": "Third-Party APIs",
"description": "IPs for critical third-party services.",
"status": "active",
"sites": [],
"prefixes": []
}
]Retrieves a list of all prefix lists within your organization. This endpoint provides a summary view and does not include the detailed list of prefixes or sites for performance. To get full details, retrieve a specific prefix list by its ID.
curl --request GET \
--url https://v1.api.altostrat.io/vpc/prefix-lists \
--header 'Authorization: Bearer <token>'[
{
"id": "prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpw",
"name": "Main Office IPs",
"description": "Public IP ranges for the main office.",
"status": "active",
"sites": [],
"prefixes": []
},
{
"id": "prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpz",
"name": "Third-Party APIs",
"description": "IPs for critical third-party services.",
"status": "active",
"sites": [],
"prefixes": []
}
]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.
Authentication is performed via an Auth0-issued JSON Web Token (JWT). Provide the token in the Authorization header with the Bearer scheme.
A list of prefix lists.
The unique identifier for the prefix list, prefixed with prfx_lst_.
"prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpw"
A human-readable name for the prefix list.
"Main Office IPs"
An optional description for the prefix list.
"Public IP ranges for the main office."
The current synchronization status of the prefix list.
active, syncing, failed "active"
A list of site IDs where this prefix list is directly applied.
The list of CIDR blocks in this prefix list.
Show child attributes
Was this page helpful?