Property hazard counts
/v1/suburbs/{suburb_name}/risks/property-hazard-counts15¢ per callCounts and shares of the suburb's properties flagged bushfire / flood / mine-subsidence / contamination / aircraft-noise / acid-sulfate.
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_namestringrequiredQuery parameters
Responses
Successful Response
area_namestringalways returnedCanonical ABS SAL suburb name.
area_levelstringalways returnedAlways 'suburb'.
total_propertiesintegeralways returnedPrincipal GNAF addresses in the suburb.
bushfireobjectalways returnedCount + share of the suburb's properties flagged for one hazard.
floodobjectalways returnedCount + share of the suburb's properties flagged for one hazard.
mine_subsidenceobjectalways returnedCount + share of the suburb's properties flagged for one hazard.
contaminationobjectalways returnedContamination-register proximity — counts of properties within fixed distances of a registered contamination site.
aircraft_noiseobjectalways returnedAircraft-noise exposure (ANEF) across the suburb's properties.
acid_sulfateobjectalways returnedAcid-sulfate soil exposure by high-risk tier.
/v1/suburbs/{suburb_name}/risks/property-hazard-countscurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/property-hazard-counts' \
--header 'Authorization: Bearer test'{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"total_properties": 2727,
"bushfire": {
"count": 644,
"pct": 23.62
},
"flood": {
"count": 154,
"pct": 5.65
},
"mine_subsidence": {
"count": 2727,
"pct": 100
},
"contamination": {
"within_250m_count": 180,
"within_250m_pct": 6.6,
"within_500m_count": 496,
"within_500m_pct": 18.19,
"nearest_m": 1.7
},
"aircraft_noise": {},
"acid_sulfate": {
"any_high_count": 0,
"any_high_pct": 0,
"surface_high_count": 0,
"surface_high_pct": 0
}
}
}