Days on market — regional benchmark
/v1/suburbs/{suburb_name}/market/days-on-market-benchmark3¢ per callMedian days on market across the suburb's greater region (GCCSA) — compare with /market/days-on-market.
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: 3¢ 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.
gccsastringmay be nullGreater capital city statistical area, e.g. 'Rest of NSW'.
days_on_marketnumbermay be nullMedian days on market across the region's suburbs.
n_suburbsintegermay be nullSuburbs behind the benchmark median.
/v1/suburbs/{suburb_name}/market/days-on-market-benchmarkcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/days-on-market-benchmark' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"days_on_market": 34,
"gccsa": "Rest of NSW",
"n_suburbs": 1846
}
}