Property - Development
Primary zoning code
GET
/v1/properties/{gnaf_id}/development/zoning-code3¢ per callPrimary zoning at the property's point — code (R2, B4, ...) when the council ships one, plus the human-readable name and the broader category.
Price: 3¢ 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
ZoningCodefields returned to you
codestringmay be nullParenthesised code (e.g. 'R2', 'B4', 'IN1') when the council's feed includes one. Many regional NSW + Adelaide + QLD councils don't — in which case this is null and the human-readable label is on `name`.
namestringmay be nullHuman-readable zone class, e.g. 'Low Density Residential'.
categorystringmay be nullBroader category bucket, e.g. 'Residential Zones', 'Business Zones'.
GET
/v1/properties/{gnaf_id}/development/zoning-codecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/development/zoning-code' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"category": "Residential Zones",
"code": "R2",
"name": "Low Density Residential"
}
}Successful Response200
application/json
