5-year price growth
/v1/suburbs/{suburb_name}/market/price-growth-5y5¢ per call5-year compound sale-price growth (decimal).
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: 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_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.
metricstringmay be nullMetric label, e.g. 'growth_5_year'.
housenumbermay be nullHouse 5-year compound growth (decimal, e.g. 0.42 = +42%).
unitnumbermay be nullUnit 5-year compound growth (decimal).
as_ofstringmay be nullDate of the most recent observation (YYYY-MM-DD).
/v1/suburbs/{suburb_name}/market/price-growth-5ycurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/price-growth-5y' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-24",
"house": 0.684,
"metric": "growth_5_year",
"unit": 0.06
}
}