Zoning map (polygons)
/v1/suburbs/{suburb_name}/development/zoning-map25¢ per callZoning polygons clipped to the suburb, with per-class and parent-group area shares.
Exact suburb identifier required. Exact ABS Suburb and Locality (SAL) name, e.g. Burwood (NSW) — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call GET /v1/geocode/suburb?q=<text>, then use the exact data[].area_name it returns. Suburb data endpoints do not guess a state or typo-correct names.
Price: 25¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
suburb_namestringrequiredExact ABS Suburb and Locality (SAL) name, e.g. `Burwood (NSW)` — many suburbs carry a state suffix. If starting from free text or an unverified bare name, first call `GET /v1/geocode/suburb?q=<text>`, then use the exact `data[].area_name` it returns. Suburb data endpoints do not guess a state or typo-correct names.
Query parameters
Responses
Successful Response
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb'.
legendarray of ZoningLegendRowalways returnedPer-class area shares, largest first.
groupsarray of ZoningGroupalways returnedParent-group area shares (Environmental / Residential / Commercial / Other).
geojsonobjectalways returnedRFC 7946 FeatureCollection.
/v1/suburbs/{suburb_name}/development/zoning-mapcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/zoning-map' \
--header 'Authorization: Bearer test'{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"legend": [
{
"lay_class": "Low Density Residential",
"sym_code": "R2",
"parent": "Residential",
"color": "#e85d75",
"pct": 62.4
},
{
"lay_class": "Environmental Conservation",
"sym_code": "C2",
"parent": "Environmental",
"color": "#27ae60",
"pct": 21.9
}
],
"groups": [
{
"label": "Environmental",
"pct": 24.3,
"color": "#27ae60"
},
{
"label": "Residential",
"pct": 64.1,
"color": "#e85d75"
},
{
"label": "Commercial",
"pct": 1.6,
"color": "#f6c445"
},
{
"label": "Other",
"pct": 10,
"color": "#b8b8b8"
}
],
"geojson": {
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
151.6695,
-33.0018
],
[
151.6702,
-33.0021
],
[
151.6698,
-33.0027
],
[
151.6695,
-33.0018
]
]
]
},
"properties": {
"lay_class": "Environmental Conservation",
"sym_code": "C2",
"parent": "Environmental",
"color": "#27ae60"
}
}
]
}
}
}