Suburb - Risks
Extra risk indicators
GET
/v1/suburbs/{suburb_name}/risks/extras10¢ per callLandslide / storm-tide coverage, EPA notices, landlord-insurance medians and crime benchmark, with per-microburb detail.
Price: 10¢ 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
RiskExtrasfields returned to you
area_namestringalways returnedCanonical ABS SAL suburb name.
area_levelstringalways returnedAlways 'suburb'.
landslide_pctnumbermay be null% of suburb area in a landslide-risk overlay.
storm_tide_high_pctnumbermay be null% of suburb area in the high storm-tide band.
epa_notices_nintegermay be nullEPA notices inside the suburb.
insuranceobjectalways returnedLandlord-insurance premium estimate medians for the suburb.
crime_benchobjectalways returnedCrime benchmark — median of summed per-100k predicted crime rates across microburbs, suburb vs national.
per_mbobjectalways returnedPer-microburb detail split out from the suburb scalars.
GET
/v1/suburbs/{suburb_name}/risks/extrascURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/extras' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"landslide_pct": 0,
"storm_tide_high_pct": 0,
"epa_notices_n": 3,
"insurance": {
"n": 77,
"comp_med": 2542,
"basic_med": 479,
"rent_med": 433
},
"crime_bench": {
"nat_med": 2787.56,
"sub_med": 2248.01
},
"per_mb": {
"insurance": [
{
"mb": "10431160000",
"score": 2551
}
],
"risks": [
{
"mb": "10431160000",
"contam_pct": 100,
"mine_pct": 100,
"acid_pct": 0
}
]
}
}
}Successful Response200
application/json
