Help us improve CoreWeave documentation. Take the docs survey.
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"
}
]
}Fetch every VPC the caller can read across all Availability Zones.
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.
https://api.coreweave.com.{API_ACCESS_TOKEN} with your CoreWeave API access token.curl -X GET https://api.coreweave.com/v1beta1/networking/vpcs \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {API_ACCESS_TOKEN}"
Was this page helpful?