Property - Development
Development overlays at this point
GET
/v1/properties/{gnaf_id}/development/zoning-overlays5¢ per callDevelopment 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_idstringrequiredQuery 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 returnedOverlay layer code, e.g. 'fsr', 'hob'.
valuestringmay be nullValue at this point (e.g. '1.5' for FSR, '9.5' for HoB metres).
GET
/v1/properties/{gnaf_id}/development/zoning-overlayscURL
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
