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/security-groups \
--header 'Authorization: Bearer <token>'[
{
"id": "sec_grp_0ujsswThIGTUYm2K8FjOOfxcYpw",
"name": "Default Web Servers",
"description": "Allows inbound HTTP/HTTPS traffic from anywhere.",
"status": "active",
"sites": [],
"rules": []
},
{
"id": "sec_grp_0ujsswThIGTUYm2K8FjOOfxcYpz",
"name": "Internal Management",
"description": "Allows SSH and RDP from the main office prefix list.",
"status": "syncing",
"sites": [],
"rules": []
}
]Retrieves a list of all security groups within your organization. This endpoint provides a summary view of each group and does not include the detailed list of rules or associated sites for performance reasons. To get full details, retrieve a specific security group by its ID.
curl --request GET \
--url https://v1.api.altostrat.io/vpc/security-groups \
--header 'Authorization: Bearer <token>'[
{
"id": "sec_grp_0ujsswThIGTUYm2K8FjOOfxcYpw",
"name": "Default Web Servers",
"description": "Allows inbound HTTP/HTTPS traffic from anywhere.",
"status": "active",
"sites": [],
"rules": []
},
{
"id": "sec_grp_0ujsswThIGTUYm2K8FjOOfxcYpz",
"name": "Internal Management",
"description": "Allows SSH and RDP from the main office prefix list.",
"status": "syncing",
"sites": [],
"rules": []
}
]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 security groups.
The unique identifier for the security group, prefixed with sec_grp_.
"sec_grp_0ujsswThIGTUYm2K8FjOOfxcYpw"
A human-readable name for the security group.
"Default Web Servers"
An optional description for the security group, providing more context.
"Allows inbound HTTP/HTTPS traffic from anywhere."
The current synchronization status of the security group. syncing means changes are being deployed and the resource is locked from modification.
active, syncing, failed "active"
A list of site IDs to which this security group is currently applied.
An ordered list of firewall rules that define the security policy.
Show child attributes
Was this page helpful?