Suburb - Hero
12-month price growth
GET
/v1/suburbs/{suburb_name}/hero/price-growth-12mo5¢ per call12-month sale-price growth by property type (house / unit).
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
HeroPriceGrowth12mofields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
growtharray of HeroPriceGrowthRowalways returnedOne entry per property type with data.
GET
/v1/suburbs/{suburb_name}/hero/price-growth-12mocURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/hero/price-growth-12mo' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"growth": [
{
"current_val": 1130000,
"field": "prop_list_price_0_5_buy_house",
"pct": 17.83,
"prev_val": 959000,
"property_type": "house"
},
{
"current_val": 583000,
"field": "prop_list_price_0_5_buy_unit",
"pct": 8.16,
"prev_val": 539000,
"property_type": "unit"
}
]
}
}Successful Response200
application/json
