Microburbs
Suburb - Market

5-year price growth

GET/v1/suburbs/{suburb_name}/market/price-growth-5y5¢ per call

5-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_namestringrequired

Query 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 returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

metricstringmay be null

Metric label, e.g. 'growth_5_year'.

housenumbermay be null

House 5-year compound growth (decimal, e.g. 0.42 = +42%).

unitnumbermay be null

Unit 5-year compound growth (decimal).

as_ofstringmay be null

Date of the most recent observation (YYYY-MM-DD).

GET/v1/suburbs/{suburb_name}/market/price-growth-5y
cURL
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