Resources

Wind farms and turbines.

Browse the asset registry. Wind farms group turbines, turbines carry locations, capacity and metadata.

Wind farms

GET/v1/windfarms

List wind farms

Returns all wind farms the authenticated client has access to.

Required scopesassets.read

Request

GET /v1/windfarms?country=NL&status=operational&limit=50
Authorization: Bearer <token>

Response

{
  "data": [
    {
      "id": "wf_borssele_iii_iv",
      "name": "Borssele III & IV",
      "country": "NL",
      "offshore": true,
      "operator": "Blauwwind",
      "totalCapacityMw": 731.5,
      "status": "operational",
      "source": "GEM"
    }
  ],
  "nextCursor": null
}
GET/v1/windfarms/{id}

Retrieve a wind farm

Full record including geometry and external identifiers.

Required scopesassets.read

Turbines

GET/v1/windturbines

List turbines

Filter by wind farm, country, manufacturer or status.

Required scopesassets.read

Request

GET /v1/windturbines?windFarmId=wf_borssele_iii_iv

Response

{
  "data": [
    {
      "id": "wt_b3_a07",
      "windFarmId": "wf_borssele_iii_iv",
      "code": "A07",
      "manufacturer": "MHI Vestas",
      "model": "V164-9.5 MW",
      "hubHeight": 107,
      "rotorDiameter": 164,
      "capacityMw": 9.5,
      "lat": 51.700,
      "lon": 3.058,
      "status": "operational"
    }
  ],
  "nextCursor": "wt_b3_a08"
}
GET/v1/windturbines/{id}

Retrieve a turbine

Includes nameplate data, commissioning date and source provenance.

Required scopesassets.read