Past price growth (1 / 3 / 5 / 10-year)
/v1/suburbs/{suburb_name}/market/price-growth15¢ per callPast compound sale-price growth over 1 / 3 / 5 / 10 years, by property type (decimal). The 3y / 10y figures are the same ones the Suburb Finder ranks on.
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.
houseobjectmay be nullHouse compound growth by horizon: keys '1yr','3yr','5yr','10yr' (decimal).
unitobjectmay be nullUnit compound growth by horizon, same keys (decimal).
as_ofstringmay be nullDate of the most recent observation (YYYY-MM-DD).
/v1/suburbs/{suburb_name}/market/price-growthcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/price-growth' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-24",
"house": {
"10yr": 1.24,
"1yr": 0.08,
"3yr": 0.36,
"5yr": 0.684
},
"unit": {
"10yr": 0.61,
"1yr": 0.02,
"3yr": 0.04,
"5yr": 0.06
}
}
}