Stock on market
/v1/suburbs/{suburb_name}/market/stock-on-market8¢ per callProperties currently listed for sale in the suburb, split house/unit, with the suburb's rank among its peers.
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: 8¢ 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.
stock_on_marketnumberalways returnedTotal properties listed for sale.
rankintegermay be nullPosition among peer suburbs (1 = most stock).
areasintegermay be nullSize of the peer group the rank is out of.
housenumbermay be nullHouses listed for sale.
unitnumbermay be nullUnits listed for sale.
as_ofstringmay be nullDate of the observation (YYYY-MM-DD).
/v1/suburbs/{suburb_name}/market/stock-on-marketcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/stock-on-market' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"areas": 131,
"as_of": "2026-08-09",
"house": 20,
"rank": 30,
"stock_on_market": 21,
"unit": 1
}
}