Capital-growth drivers
/v1/suburbs/{suburb_name}/market/growth-drivers25¢ per callPer-indicator capital-growth attribution for the suburb.
Each row pairs the suburb's own value for an indicator with the capital-growth differential our matched studies attribute to it, in percentage points. Covers supply & demand pressure, market signals, environmental risks and demographic composition.
Exact suburb identifier required. Exact ABS Suburb and Locality (SAL) name, e.g. Burwood (NSW) — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call GET /v1/geocode/suburb?q=<text>, then use the exact data[].area_name it returns. Suburb data endpoints do not guess a state or typo-correct names.
Price: 25¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
suburb_namestringrequiredExact ABS Suburb and Locality (SAL) name, e.g. `Burwood (NSW)` — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call `GET /v1/geocode/suburb?q=<text>`, then use the exact `data[].area_name` it returns. Suburb data endpoints do not guess a state or typo-correct names.
Query parameters
Responses
Successful Response
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for this endpoint.
driversarray of GrowthDriveralways returnedOne row per indicator that carries an attributed impact. Indicators with no value for this suburb, or no matching band, are omitted rather than returned as zero.
/v1/suburbs/{suburb_name}/market/growth-driverscurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/growth-drivers' \
--header 'Authorization: Bearer test'{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"drivers": [
{
"band": "(0.999, 1.51]",
"basis": "nat_rel",
"category": "supply_demand",
"direction": "positive",
"horizon_years": 2,
"impact_pct_per_year": 1.11,
"indicator": "Months of Supply",
"key": "prop_list_months_of_supply",
"source": "thresholds_v3_prod",
"unit": "months",
"value": 1
},
{
"band": "present",
"basis": "matched_control",
"category": "risks",
"direction": "neutral",
"horizon_years": 1,
"impact_pct_per_year": -0.29,
"indicator": "Contamination",
"key": "contamination",
"source": "dbyd_matched_cg",
"unit": "%",
"value": 18.19
},
{
"band": "Top",
"basis": "nat_bin",
"category": "demographics",
"direction": "positive",
"horizon_years": 4,
"impact_pct_per_year": 0.43,
"indicator": "Cultural Integration",
"key": "cultural_integration",
"source": "cultural_integration_sal",
"unit": "score_0_100",
"value": 61.8
}
]
}
}