Skip to main content
GET
/
v1beta1
/
networking
/
vpcs
List VPCs
curl --request GET \
  --url https://api.coreweave.com/v1beta1/networking/vpcs \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "name": "<string>",
      "zone": "<string>",
      "id": "<string>",
      "vpcPrefixes": [
        {
          "name": "<string>",
          "value": "<string>",
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z",
          "status": "STATUS_AVAILABLE"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "hostPrefix": "<string>",
      "hostPrefixes": [
        {
          "name": "<string>",
          "prefixes": [
            "<string>"
          ],
          "type": "PRIMARY",
          "ipam": {
            "prefixLength": 123,
            "gatewayAddressPolicy": "EUI64"
          }
        }
      ],
      "ingress": {
        "disablePublicServices": true
      },
      "egress": {
        "disablePublicAccess": true
      },
      "dhcp": {
        "dns": {
          "servers": [
            "<string>"
          ]
        }
      },
      "status": "STATUS_CREATING"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt

Use this file to discover all available pages before exploring further.

Use this endpoint to enumerate every VPC the caller has access to. Results span all Availability Zones.
Example request
curl -X GET https://api.coreweave.com/v1beta1/networking/vpcs \
       -H "Content-Type: application/json" \
       -H "Authorization: Bearer {API_ACCESS_TOKEN}"

Authorizations

Authorization
string
header
default:{API_ACCESS_TOKEN}
required

CoreWeave API access token sent as a bearer token.

Response

OK

items
object[]
read-only

The list of VPCs.

Last modified on May 4, 2026