v1

latestOpenAPI 3.1.02026-07-2676123203.9 KB
Catalog

List data centers

Returns available data center locations with region, compliance, supported network volume tiers, and global networking support. Use include=GPU_AVAILABILITY or include=CPU_AVAILABILITY to add per-resource availability arrays to each data center. The regions, networkVolumeTypes, compliance, and globalNetwork query parameters filter the list before it is returned.

get/v2/catalog/datacenters

Query parameters

includeDataCenterInclude[]

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

[
  "GPU_AVAILABILITY"
]
regionsDataCenterRegion[]

Comma-separated DataCenterRegion enum values. Values within this filter use OR semantics. Different filter families combine with AND.

[
  "EUROPE",
  "ASIA"
]
networkVolumeTypesVolumeType[]

Comma-separated volume types. Supported values: STANDARD, HIGH_PERFORMANCE. Values within this filter use AND semantics; volumes=STANDARD,HIGH_PERFORMANCE requires both storage types. Different filter families combine with AND.

[
  "STANDARD",
  "HIGH_PERFORMANCE"
]
complianceCompliance[]

Comma-separated Compliance enum values. Values within this filter use AND semantics; compliance=GDPR,SOC_2_TYPE_2 requires both certifications. Different filter families combine with AND.

[
  "GDPR",
  "SOC_2_TYPE_2"
]
globalNetworkboolean

Filter by global networking support. true returns only data centers that support global networking; false only those that do not. Different filter families combine with AND.

Response

OK

Example response

{
  "dataCenters": [
    {
      "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"
        }
      ]
    }
  ]
}