Recent price movement (last 4 weeks)
/v1/suburbs/{suburb_name}/market/recent-price-movement15¢ per callThe last four weekly smart-median observations — house price, unit price and house rent — each with its week-on-week percentage change.
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: 15¢ 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.
weeksarray of RecentPriceWeekalways returnedUp to 4 weekly rows, oldest first.
/v1/suburbs/{suburb_name}/market/recent-price-movementcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/recent-price-movement' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"weeks": [
{
"date": "2026-07-19",
"house_price": 1120000,
"house_price_change_pct": 0,
"house_rent": 650,
"house_rent_change_pct": 0
},
{
"date": "2026-08-09",
"house_price": 1130000,
"house_price_change_pct": 0.89,
"house_rent": 660,
"house_rent_change_pct": 1.54
}
]
}
}