Flood coverage
/v1/suburbs/{suburb_name}/risks/flood6¢ per callShare of the suburb area covered by modelled flood overlays.
Price: 6¢ 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
geojsonbooleanoptionalWhen true, add a `geojson` FeatureCollection of the flood polygons clipped to the suburb boundary (default false — response unchanged).
Responses
Successful Response
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb'.
namestringalways returnedRisk overlay name — 'Bushfire' or 'Flood'.
coverage_pctnumberalways returnedShare of suburb area inside the overlay (%).
value_unitstringalways returnedUnit for coverage_pct — '% of suburb area'.
risk_bandstringmay be nullCoarse band — 'low' / 'moderate' / 'high'. Currently flood only.
geojsonobjectmay be nullGeoJSON FeatureCollection of the hazard polygons for this layer, ST_Intersection-clipped to the suburb boundary and simplified for browser use. Present only when the request passes `?geojson=true`; absent (and the response byte-identical to before) otherwise.
geojson_metaobjectmay be nullClip / simplify / truncation metadata for `geojson` (clip method, simplify tolerance, coordinate precision, feature cap, and whether the size cap truncated the output). Present only with `?geojson=true`.
/v1/suburbs/{suburb_name}/risks/floodcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/flood' \
--header 'Authorization: Bearer test'{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"name": "Flood",
"coverage_pct": 7.2,
"value_unit": "% of suburb area",
"risk_band": "moderate"
}
}