Suburb - Market
Median days on market
GET
/v1/suburbs/{suburb_name}/market/days-on-market5¢ per callMedian days on market for current listings.
Price: 5¢ 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
DaysOnMarketfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
housenumbermay be nullMedian DOM for houses (days).
unitnumbermay be nullMedian DOM for units (days).
as_ofstringmay be nullDate of the most recent observation (YYYY-MM-DD).
GET
/v1/suburbs/{suburb_name}/market/days-on-marketcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/days-on-market' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-17",
"house": 23,
"unit": 31.5
}
}Successful Response200
application/json
