GET/api/builds
AI data center builds, largest first by announced megawatts
- statusOnly builds with this status
- companyOnly builds this company runs, rents or partners on (companies.fru.dev slug)
- countryISO country code
- programA program such as stargate or fairwater
- min_mwOnly builds with at least this many MW announced
- limitItems per page, 1 to 200
- offsetItems to skip, for the next page
Shell
curl -s "https://datacenters.fru.dev/api/builds?min_mw=1000&limit=2"Sample response
JSON
{
"builds": [
{
"id": "meta-hyperion",
"name": "Hyperion",
"program": "",
"operator": "meta",
"tenant": "",
"partners": [
"entergy"
],
"city": "Richland Parish",
"region": "Louisiana",
"country": "US",
"lat": 32.47,
"lon": -91.63,
"metro": "",
"mw": 5000,
"mwNote": ""
},
{
"id": "crusoe-wyoming-tallgrass",
"name": "Crusoe Wyoming (Project Jade)",
"program": "",
"operator": "crusoe",
"tenant": "",
"partners": [
"tallgrass"
],
"city": "Cheyenne area",
"region": "Wyoming",
"country": "US",
"lat": 41.14,
"lon": -104.82,
"metro": "wyoming",
"mw": 1800,
"mwNote": "designed to scale to 10 GW"
}
],
"total": 11,
"limit": 2,
"offset": 0,
"next": "/api/builds?min_mw=1000&limit=2&offset=2",
"note": "Figures as announced by the operator or reported by the linked sources. mw and capexB are null when not stated. Builds with unverified tr..."
}