Suburb - Market
Median sale price
GET
/v1/suburbs/{suburb_name}/market/median-sale-price6¢ per callLatest median sale price for the suburb.
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_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
MedianSalePricefields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
housenumbermay be nullMedian sale price for houses (AUD).
unitnumbermay be nullMedian sale price for units (AUD).
as_ofstringmay be nullDate of the most recent observation (YYYY-MM-DD).
GET
/v1/suburbs/{suburb_name}/market/median-sale-pricecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/median-sale-price' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-24",
"house": 1160000,
"unit": 573000
}
}Successful Response200
application/json
