Get network infrastructure

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

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

Query parameters

Name Type Default Description
limit integer 100 Limit the number of results returned (maximum 1000)
offset integer 0 Offset from the first record returned (for pagination)
country string AU ALPHA-2 ISO3166 country code. Accepts "AU" or "NZ"
fields enum Set to "all" to include the full set of infrastructure field values
identifier enum name When 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.