Networking
List VPCs
List virtual private clouds (VPCs).
Pass X-Project-ID to scope to a specific project. Omit it to list all VPCs you have access to across the account.
get/api/v1/vpcs
Headers
X-Project-IDstring uuid
Project to scope the list to. Omit to list across all accessible projects.
Response
List of VPCs
Example response
{
"data": [
{
"name": "vpc-prod",
"cidr": "10.0.0.0/24",
"gateway": "10.0.0.1",
"status": "active",
"total_ips": 256,
"used_ips": 4
}
]
}