Median sale price per microburb
/v1/suburbs/{suburb_name}/market/median-price-map20¢ per callMedian house price for every microburb (mesh block) in the suburb, with
its modal street name, plus the dearest and cheapest pockets. Values only —
the matching polygons come from /shapes/mesh-blocks.
Exact 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: 20¢ 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
suburbstringalways returnedCanonical SAL name.
metricstringalways returnedAlways 'median_house_price'.
unitstringalways returnedAlways 'AUD'.
as_ofstringmay be nullDate of the price surface (YYYY-MM-DD).
definitionstringalways returnedHow the figure is derived.
n_microburbsintegeralways returnedMicroburbs with a price.
microburbsarray of MedianPriceMbalways returnedPer-microburb prices, highest first.
highestobjectmay be nullMedian house price for one microburb (mesh block).
lowestobjectmay be nullMedian house price for one microburb (mesh block).
/v1/suburbs/{suburb_name}/market/median-price-mapcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/median-price-map' \
--header 'Authorization: Bearer test'{
"data": {
"suburb": "Belmont North",
"metric": "median_house_price",
"unit": "AUD",
"as_of": "2026-08-09",
"definition": "Modelled median (50th-percentile) house price for the mesh block, from the modelled per-microburb price surface. Mesh block = 'microburb', the smallest ABS geography (~30-60 dwellings). Mesh blocks with too little signal are absent rather than zero.",
"n_microburbs": 63,
"microburbs": [
{
"mb": "10434032000",
"street": "Pacific",
"median_price": 3843000
}
],
"highest": {
"mb": "10434032000",
"street": "Pacific",
"median_price": 3843000
},
"lowest": {
"mb": "10439043000",
"street": "Lentara",
"median_price": 625900
}
}
}