Skip to main content
GET
/
projects
/
{project_id}
/
vpcs
/
{vpc_id}
Get a VPC
curl --request GET \
  --url https://console.cloud.timescale.com/public/api/v1/projects/{project_id}/vpcs/{vpc_id}
{
  "id": "1234567890",
  "name": "my-production-vpc",
  "cidr": "10.0.0.0/16",
  "region_code": "us-east-1"
}

Path Parameters

project_id
string
required

The unique identifier of the project.

Example:

"rp1pz7uyae"

vpc_id
string
required

The unique identifier of the VPC.

Example:

"1234567890"

Response

VPC details.

id
string
Example:

"1234567890"

name
string
Example:

"my-production-vpc"

cidr
string
Example:

"10.0.0.0/16"

region_code
string
Example:

"us-east-1"