Bedroom stats
/v1/suburbs/{suburb_name}/market/bedroom-stats10¢ per callHouse/unit price, sales volume, median bath/car/land, and stock mix per bedroom count.
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: 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_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
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
bedroomsarray of BedroomStatsRowalways returnedOne row per bedroom count.
/v1/suburbs/{suburb_name}/market/bedroom-statscurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/bedroom-stats' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"bedrooms": [
{
"bedrooms": 3,
"house_price": 952000,
"median_bath": 1,
"median_car": 2,
"median_land": 613,
"n_sales": 4364,
"pct_house": 88,
"pct_townhouse": 5,
"pct_unit": 1,
"unit_price": 705000
}
]
}
}