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/{prefixListId} \
--header 'Authorization: Bearer <token>'{
"id": "prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpw",
"name": "Main Office IPs",
"description": "Public IP ranges for the main office.",
"status": "active",
"sites": [
"site_12345"
],
"prefixes": [
{
"id": "prfx_0ujsswThIGTUYm2K8FjOOfxcYpw",
"cidr": "192.0.2.0/24",
"description": "Main server subnet"
}
]
}Retrieves the complete details of a specific prefix list, including its name, description, status, associated sites, and a full list of its prefixes.
curl --request GET \
--url https://v1.api.altostrat.io/vpc/prefix-lists/{prefixListId} \
--header 'Authorization: Bearer <token>'{
"id": "prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpw",
"name": "Main Office IPs",
"description": "Public IP ranges for the main office.",
"status": "active",
"sites": [
"site_12345"
],
"prefixes": [
{
"id": "prfx_0ujsswThIGTUYm2K8FjOOfxcYpw",
"cidr": "192.0.2.0/24",
"description": "Main server subnet"
}
]
}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.
The unique identifier for the prefix list, prefixed with prfx_lst_.
^prfx_lst_[0-9a-zA-Z]{27}$"prfx_lst_0ujsswThIGTUYm2K8FjOOfxcYpw"
The requested prefix list object.
Represents a reusable, named collection of IP addresses and CIDR blocks.
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?