Suburb - Demographics
All demographics — bundle
GET
/v1/suburbs/{suburb_name}/demographics/all6¢ per callPrice: 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_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
DemographicsAllfields returned to you
agearray of DemographicRowmay be nullincomearray of DemographicRowmay be nullGET
/v1/suburbs/{suburb_name}/demographics/allcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/all' \
--header 'Authorization: Bearer test'Example Responses
{
"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
}
]
}
}Successful Response200
application/json
