---
title: "List VPCs"
method: GET
path: "/api/v1/vpcs"
tags: ["Networking"]
---

# List VPCs

`GET /api/v1/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.

## Headers

- `X-Project-ID` string, uuid

## Response `200`

List of VPCs

- object
  - `success` boolean
  - `data` VPC[]
    - `id` string, uuid, required — VPC identifier.
    - `account_id` string, uuid — Account this VPC belongs to.
    - `project_id` string, uuid — Project this VPC belongs to.
    - `name` string, required — VPC display name.
    - `cidr` string, required — CIDR block for the VPC.
    - `gateway` string — Gateway IP for the VPC.
    - `dns` string — DNS server IP for the VPC.
    - `status` string, required — VPC lifecycle status.
    - `total_ips` integer — Total addressable IPs in the VPC.
    - `used_ips` integer — IPs currently leased to VMs.
    - `region` 'us-east', required — Region where the VPC lives.
    - `gateway_type` string — Gateway type (e.g. `none`, `nat`).
    - `router_public_ip` string — Public IP of the VPC gateway, if a gateway is enabled.
    - `router_status` string — Gateway router status.
    - `created_at` string, date-time
    - `updated_at` string, date-time

## Other responses

- `401` — Authentication required

---

[API](https://skmtc.dev/rafftechnologies/apis/raff-api.md) · [All operations](https://skmtc.dev/rafftechnologies/apis/raff-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/rafftechnologies/raff-api/revisions/2f4df56be77c/schema)
