v12

latestOpenAPI 3.0.3raw.githubusercontent.com2026-06-1811583196.1 KB
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

successboolean

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
    }
  ]
}