Get network infrastructure fields
Returns available data field definitions for network infrastructure records.
GET https://api.renewmap.com.au/api/v1/network/fields
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 10000) |
| offset | integer | 0 | Offset from the first record returned (for pagination) |
Example request
curl --request GET \
--url 'https://api.renewmap.com.au/api/v1/network/fields' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--header 'accept: application/json' Example response
{
"fields": [
{
"id": "5794e214-0aa6-438b-9092-042779defd16",
"field_name": "National Renewable Energy Priority List (Network)",
"field_type": "string",
"description": "Provided coordinated support for regulatory planning and environmental approval processes",
"group_name": "Regulatory",
"rank": 4010
}
]
}
Each field definition includes:
- field_name — Human-readable name of the data field
- field_type — Data type (e.g.
string,array,number) - group_name — Logical grouping for display purposes
- rank — Sort order within the group