Microburbs
Property - Risks

Bushfire-prone overlay

GET/v1/properties/{gnaf_id}/risks/bushfire15¢ per call

Bushfire-prone-area overlay intersecting the parcel.

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

gnaf_idstringrequired

Query parameters

geojsonbooleanoptional

When true, add a `geojson` FeatureCollection of the hazard polygons clipped to a 1km-radius circle around the property, plus `geojson_meta` (default false — response unchanged).

not sent · default false

Responses

Successful Response

application/json
list[RiskRecord]fields returned to you
Array of:
area_levelstringmay be null
area_namestringmay be null
namestringmay be null
valuestringmay be null
value_unitstringmay be null
geojsonobjectmay be null

GeoJSON FeatureCollection of the hazard polygons for this overlay, ST_Intersection-clipped to a 1km-radius circle around the property 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 null

Clip / simplify / truncation metadata for `geojson` (clip_method='1km_radius', radius_m, simplify tolerance, coordinate precision, feature/byte caps, and whether the size cap truncated the output). Present only with `?geojson=true`.

GET/v1/properties/{gnaf_id}/risks/bushfire
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/risks/bushfire' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": [
    {
      "area_level": "Layer",
      "area_name": "Risk Layer",
      "name": "Fire",
      "value": ""
    }
  ]
}
Successful Response200
application/json