New

Explore RenewMap: Operational Insights

Get network infrastructure

Returns operating and under-development network infrastructure including transmission lines and substations.

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

Query parameters

NameTypeDefaultDescription
limitinteger100Limit the number of results returned (maximum 1000)
offsetinteger0Offset from the first record returned (for pagination)
countrystringAUALPHA-2 ISO3166 country code. Accepts "AU" or "NZ"
fieldsenumSet to "all" to include the full set of infrastructure field values
identifierenumnameWhen fields=all, return entity values as "name" or "id"

Example request

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

Example response

{
  "network": [
    {
      "id": "a921a3fa-ab4a-41a7-ac7e-754b3b831fbf",
      "infrastructure_name": "Tarong to Halys",
      "infrastructure_type": "Transmission",
      "line_id": "F8868",
      "infrastructure_status": "Operating",
      "description": "Tarong to Halys",
      "voltage": 275,
      "construction_type": "Overhead",
      "state": "QLD",
      "country": "Australia",
      "network": "National Electricity Market",
      "operator": "Powerlink",
      "source_text": "Geoscience Australia",
      "geometry": {
        "type": "MultiLineString",
        "coordinates": [[[151.0, -26.0]]]
      },
      "fields": []
    }
  ]
}

Infrastructure types include transmission lines (Overhead, Underground, Undersea, Elevated) and Substations.

The geometry field uses GeoJSON format. The fields array is included when fields=all is passed.

The maximum limit for this endpoint is 1000.