v1

latestOpenAPI 3.1.02026-07-2676123203.9 KB
Catalog

Get a data center

Returns a single data center. Availability is included only when requested with include=GPU_AVAILABILITY or include=CPU_AVAILABILITY.

get/v2/catalog/datacenters/{id}

Query parameters

includeDataCenterInclude[]

Comma-separated optional expansions. Supported value: GPU_AVAILABILITY, CPU_AVAILABILITY.

[
  "GPU_AVAILABILITY"
]

Response

OK

idstring required
namestring required
region'NORTH_AMERICA' | 'SOUTH_AMERICA' | 'EUROPE' | 'ASIA' | 'MIDDLE_EAST' | 'AFRICA' | 'OCEANIA' | 'ANTARCTICA' | 'UNKNOWN' required

Continental region containing the data center.

globalNetworkboolean required

Whether this data center supports global networking (private cross-datacenter pod-to-pod network).

networkVolumeTypesVolumeType[] required

Network volume tiers this DC supports. Empty = none.

complianceCompliance[] required

Compliance certifications held by this data center

Example response

{
  "id": "US-TX-3",
  "name": "US Texas 3",
  "region": "EUROPE",
  "globalNetwork": true,
  "compliance": [
    "GDPR",
    "ISO_IEC_27001",
    "SOC_2_TYPE_2"
  ],
  "gpuAvailability": [
    {
      "id": "NVIDIA GeForce RTX 4090",
      "name": "RTX 4090"
    }
  ],
  "cpuAvailability": [
    {
      "id": "NVIDIA GeForce RTX 4090",
      "name": "RTX 4090"
    }
  ]
}