Heritage share of properties
/v1/suburbs/{suburb_name}/risks/heritage-share5¢ per callShare of the suburb's properties inside a heritage polygon.
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: 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_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 returnedCanonical ABS SAL suburb name.
area_levelstringalways returnedAlways 'suburb'.
heritage_pctnumberalways returned% of properties inside a heritage polygon.
value_unitstringalways returnedUnit label ('% of properties').
/v1/suburbs/{suburb_name}/risks/heritage-sharecurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/heritage-share' \
--header 'Authorization: Bearer test'{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"heritage_pct": 10.39,
"value_unit": "% of properties"
}
}