Suburb - Forecast
Sale-price growth forecast
GET
/v1/suburbs/{suburb_name}/forecast/sale100¢ per call1-year sale-price growth forecast (low / most-likely / high).
Price: 100¢ 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
ForecastSalefields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
metricstringmay be nullMetric label, e.g. 'sale_price_growth_forecast'.
houseobjectmay be nullA point forecast with explicit uncertainty bounds + a confidence score.
unitobjectmay be nullA point forecast with explicit uncertainty bounds + a confidence score.
GET
/v1/suburbs/{suburb_name}/forecast/salecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/forecast/sale' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"house": {
"confidence": 2,
"high": 0.0927,
"low": 0.0379,
"most_likely": 0.0686
},
"metric": "sale_price_growth_forecast",
"unit": {
"confidence": 2,
"high": 0.0993,
"low": 0.0353,
"most_likely": 0.0762
}
}
}Successful Response200
application/json
