Suburb - Market
5-year price growth
GET
/v1/suburbs/{suburb_name}/market/price-growth-5y5¢ per call5-year compound sale-price growth (decimal).
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
PriceGrowth5yfields returned to you
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).
GET
/v1/suburbs/{suburb_name}/market/price-growth-5ycURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/price-growth-5y' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"as_of": "2026-05-24",
"house": 0.684,
"metric": "growth_5_year",
"unit": 0.06
}
}Successful Response200
application/json
