Age + income — bundle
/v1/suburbs/{suburb_name}/demographics/all6¢ per callExact suburb identifier required. Exact ABS Suburb and Locality (SAL) name, e.g. Burwood (NSW) — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call GET /v1/geocode/suburb?q=<text>, then use the exact data[].area_name it returns. Suburb data endpoints do not guess a state or typo-correct names.
Price: 6¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
suburb_namestringrequiredExact ABS Suburb and Locality (SAL) name, e.g. `Burwood (NSW)` — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call `GET /v1/geocode/suburb?q=<text>`, then use the exact `data[].area_name` it returns. Suburb data endpoints do not guess a state or typo-correct names.
Query parameters
Responses
Successful Response
agearray of DemographicRowmay be nullincomearray of DemographicRowmay be null/v1/suburbs/{suburb_name}/demographics/allcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/all' \
--header 'Authorization: Bearer test'{
"data": {
"age": [
{
"age_bracket": "0-4",
"area_level": "suburb",
"area_name": "Belmont North",
"gender": "females",
"proportion": 0.0272
}
],
"income": [
{
"age_bracket": "0-4",
"area_level": "suburb",
"area_name": "Belmont North",
"gender": "females",
"proportion": 0.0272
}
]
}
}