Help us improve CoreWeave documentation. Take the docs survey.
curl --request GET \
--url https://api.coreweave.com/v1beta1/networking/vpcs/{id} \
--header 'Authorization: Bearer <token>'{
"vpc": {
"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 a single CoreWeave VPC by its unique ID.
curl --request GET \
--url https://api.coreweave.com/v1beta1/networking/vpcs/{id} \
--header 'Authorization: Bearer <token>'{
"vpc": {
"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.{id} with the VPC ID returned from List VPCs or
Create VPC.
curl -X GET https://api.coreweave.com/v1beta1/networking/vpcs/{id} \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {API_ACCESS_TOKEN}"
Was this page helpful?