/api/v1/facilities— Paginated list of data centers. The workhorse endpoint.| country | ISO-3166-1 alpha-2 codes, comma-separated | country=DE,FR |
| operator | Operator name. Single value uses prefix match; multiple values use exact match. | operator=Equinix |
| min_power_mw | Minimum published power capacity (MW) | min_power_mw=10 |
| status | operational | under_construction | planned | status=operational |
| limit | 1–500, default 50 | limit=100 |
| offset | 0+, default 0 | offset=100 |
| format | json (default) or csv | format=csv |
curl 'https://datacenters.world/api/v1/facilities?country=US&limit=2'
{
"data": [
{
"slug": "equinix-inc-equinix-dc1-...",
"name": "Equinix DC1-DC15,DC21-DC22 - Ashburn",
"operator": "Equinix, Inc.",
"code": null,
"city": "Ashburn",
"country": "US",
"lat": 39.018593,
"lng": -77.539233,
"status": "operational",
"power_mw": null,
"space_sqft": null,
"ups_redundancy": null,
"uptime_sla": null,
"network_count": 504,
"ix_count": 7
}
],
"meta": {
"total": 1372,
"returned": 2,
"limit": 2,
"offset": 0,
"next_offset": 2
}
}