Microburbs
Suburb - Risks

Property hazard counts

GET/v1/suburbs/{suburb_name}/risks/property-hazard-counts15¢ per call

Counts 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_namestringrequired

Query parameters

None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.

Responses

Successful Response

application/json
PropertyHazardCountsfields returned to you
area_namestringalways returned

Canonical ABS SAL suburb name.

area_levelstringalways returned

Always 'suburb'.

total_propertiesintegeralways returned

Principal GNAF addresses in the suburb.

bushfireobjectalways returned

Count + share of the suburb's properties flagged for one hazard.

floodobjectalways returned

Count + share of the suburb's properties flagged for one hazard.

mine_subsidenceobjectalways returned

Count + share of the suburb's properties flagged for one hazard.

contaminationobjectalways returned

Contamination-register proximity — counts of properties within fixed distances of a registered contamination site.

aircraft_noiseobjectalways returned

Aircraft-noise exposure (ANEF) across the suburb's properties.

acid_sulfateobjectalways returned

Acid-sulfate soil exposure by high-risk tier.

GET/v1/suburbs/{suburb_name}/risks/property-hazard-counts
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/property-hazard-counts' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "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
    }
  }
}
Successful Response200
application/json