Microburbs
Property - Development

Development overlays at this point

GET/v1/properties/{gnaf_id}/development/zoning-overlays5¢ per call

Development overlays intersecting the property's parcel.

Price: 5¢ 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

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

Responses

Successful Response

application/json
list[ZoningOverlay]fields returned to you
Array of:
layerstringalways returned

Overlay layer code, e.g. 'fsr', 'hob'.

valuestringmay be null

Value at this point (e.g. '1.5' for FSR, '9.5' for HoB metres).

GET/v1/properties/{gnaf_id}/development/zoning-overlays
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/development/zoning-overlays' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": [
    {
      "layer": "hob",
      "value": "10 m"
    },
    {
      "layer": "hob",
      "value": "5.5 m"
    },
    {
      "layer": "hob",
      "value": "8.5 m"
    }
  ]
}
Successful Response200
application/json