New

Explore RenewMap: Operational Insights

Get a list of turbines

Returns individual wind turbine locations and specifications across Australia.

GEThttps://api.renewmap.com.au/api/v1/turbines
Requires API key in Authorization header. See Getting started for authentication details.

Query parameters

NameTypeDefaultDescription
limitinteger1000Limit the number of results returned (maximum 10000)
offsetinteger0Offset from the first record returned (for pagination)

Example request

curl --request GET \
  --url 'https://api.renewmap.com.au/api/v1/turbines' \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'accept: application/json'

Example response

{
  "turbines": [
    {
      "project_id": "612404b1-a665-41f4-85b7-1f5aaba1468e",
      "project_name": "Coopers Gap Wind Farm",
      "mw": [3.6, 3.8],
      "oem": "General Electric",
      "hub_height": [110, 115],
      "model": null,
      "rotor_diameter": [137, 138],
      "rotor_tip_height": [178.5, 184],
      "point": [151.4728, -26.7548]
    }
  ]
}

The point field contains GeoJSON coordinates in [longitude, latitude] format.

Fields like mw, hub_height, rotor_diameter, and rotor_tip_height are arrays representing a range of values where turbine specifications vary.

The default limit for this endpoint is 1000, higher than other endpoints.