Microburbs
Suburb - Market

Past price growth (1 / 3 / 5 / 10-year)

GET/v1/suburbs/{suburb_name}/market/price-growth15¢ per call

Past 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.

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_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
PriceGrowthAllfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

houseobjectmay be null

House compound growth by horizon: keys '1yr','3yr','5yr','10yr' (decimal).

unitobjectmay be null

Unit compound growth by horizon, same keys (decimal).

as_ofstringmay be null

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

GET/v1/suburbs/{suburb_name}/market/price-growth
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/price-growth' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "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
    }
  }
}
Successful Response200
application/json