## List All VPCs

**get** `/projects/{project_id}/vpcs`

Retrieves a list of all Virtual Private Clouds (VPCs).

### Path Parameters

- `project_id: string`

### Returns

- `id: string`

  The unique identifier for the VPC.

- `cidr: string`

  The IPv4 CIDR block for the VPC, in address/prefix notation (e.g. 10.0.0.0/16).

- `name: string`

  The name of the VPC.

- `region_code: string`

  The cloud region where the VPC is hosted.

### Example

```http
curl https://console.cloud.tigerdata.com/public/api/v1/projects/$PROJECT_ID/vpcs \
    -H "Authorization: Bearer $TIGER_CLOUD_API_KEY"
```

#### Response

```json
[
  {
    "id": "1234567890",
    "cidr": "10.0.0.0/16",
    "name": "my-production-vpc",
    "region_code": "us-east-1"
  }
]
```
