Microburbs
LGA - Profile

List LGAs

GET/v1/lga/list3¢ per call

All Australian LGAs. Optional ?state= filter (e.g. 'NSW'). Returns {lga, state} per row. Flat cost.

Price: 3¢ per call.

Authorization

Request

The only values you send. Fields under Responses below are what comes back — you never pass those.

Query parameters

statestringoptional

Filter by state / territory (NSW, VIC, ...). Optional — ~540 LGAs nationally.

Responses

Successful Response

application/json
list[LgaListItem]fields returned to you
Array of:
lgastringalways returned

LGA name.

statestringalways returned

State / Territory abbreviation (NSW, VIC, ...).

GET/v1/lga/list
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/lga/list' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": [
    {
      "lga": "Lake Macquarie",
      "state": "NSW"
    }
  ]
}
Successful Response200
application/json