Suburb - Demographics
Income per microburb
GET
/v1/suburbs/{suburb_name}/demographics/income-map10¢ per callMedian weekly household income for every microburb in the suburb, plus the suburb median, national percentile and highest/lowest pockets.
Price: 10¢ 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
SuburbIncomeMapfields returned to you
suburbstringalways returnedCanonical SAL name.
median_weekly_incomeintegermay be nullSuburb median household income ($/week).
national_percentileintegermay be nullNational income percentile, clamped 1-99.
n_microburbsintegeralways returnedMicroburbs with income data.
microburbsarray of IncomeMbalways returnedPer-microburb incomes.
highestobjectmay be nullHighest/lowest income pocket callout.
lowestobjectmay be nullHighest/lowest income pocket callout.
GET
/v1/suburbs/{suburb_name}/demographics/income-mapcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/demographics/income-map' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"highest": {
"street": "Marquis St",
"weekly_income": 2105
},
"lowest": {
"street": "Kalaroo Rd",
"weekly_income": 1188
},
"median_weekly_income": 1740,
"microburbs": [
{
"mb": "10664530000",
"street": "Marquis St",
"weekly_income": 2105
}
],
"n_microburbs": 71,
"national_percentile": 55,
"suburb": "Belmont North"
}
}Successful Response200
application/json
