/v1/datacenters Free · no key List data centers
Identity, A–E letter grade, status, approximate location. Filterable by country, paginated.
Request
curl "https://api.scoremydatacenter.org/v1/datacenters?country=FR&limit=10" import requests
r = requests.get(
"https://api.scoremydatacenter.org/v1/datacenters",
params={"country": "FR", "limit": 10},
)
print(r.json()["pagination"]["total"]) # 257 Response
{
"pagination": { "page": 1, "limit": 10, "total": 257 },
"data": [
{
"id": "fr-databank-fr3-gdc3",
"name": "DataBank FR3 / GDC3",
"operator": "DataBank",
"municipality": "Vélizy-Villacoublay",
"country": "FR",
"project_status": "operational",
"grade": "C",
"coordinates": { "lat": 48.78, "lon": 2.20 },
"power_rank": 1
}
]
} Total corpus 1,414. limit capped at 10.