Suburb - Profile
ABS geo profile
GET
/v1/suburbs/{suburb_name}/profile3¢ per callThe suburb's upward ABS admin chain — LGA, SA2/3/4, GCCSA,
state, postcode. Use /v1/suburbs/list to discover canonical
SAL names (and filter by state / LGA / SA4 / postcode).
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
suburb_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
SuburbProfilefields returned to you
suburbstringalways returnedSuburb (SAL — ABS Suburb and Locality).
lgastringmay be nullLocal Government Area.
sa2stringmay be nullSA2 name.
sa3stringmay be nullSA3 name.
sa4stringmay be nullSA4 name.
gccsastringmay be nullGreater Capital City Statistical Area.
statestringmay be nullState / Territory.
postcodestringmay be nullPostcode (POA).
GET
/v1/suburbs/{suburb_name}/profilecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/profile' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"gccsa": "Rest of NSW",
"lga": "Lake Macquarie",
"postcode": "2280",
"sa2": "Belmont - Bennetts Green",
"sa3": "Lake Macquarie - East",
"sa4": "Newcastle and Lake Macquarie",
"state": "New South Wales",
"suburb": "Belmont North"
}
}Successful Response200
application/json
