LGA - Profile
ABS geo profile
GET
/v1/lga/{lga_name}/profile3¢ per callLGA's parent chain — state + GCCSA. LGAs aren't strictly nested in SA4 so the upward chain stops there.
Price: 3¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
lga_namestringrequiredQuery parameters
None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.
Responses
Successful Response
application/json
LgaProfilefields returned to you
lgastringalways returnedLGA name.
statestringmay be nullState / Territory abbreviation.
gccsastringmay be nullGreater Capital City Statistical Area.
GET
/v1/lga/{lga_name}/profilecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/lga/Lake%20Macquarie/profile' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"gccsa": "Rest of NSW",
"lga": "Lake Macquarie",
"state": "NSW"
}
}Successful Response200
application/json
