GET
Zoning
https://www.microburbs.com.au/report_generator/api/suburb/zoning
Retrieves information about the different zoning areas within a specified suburb, including residential, commercial, and other zone types.
Important: The suburb parameter must use the official naming convention.
You can retrieve the official name for a suburb from the List Suburbs API Endpoint.
You can retrieve the official name for a suburb from the List Suburbs API Endpoint.
Click to see documentation
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| suburb | text | Required | The name of the suburb |
| geojson | boolean | Optional | Set to 'true' to include geometric shape data of zoning areas (default: false) |
Response Schema
| Field | Type | Description |
|---|---|---|
| results | array | Array of zoning areas in the suburb |
| results[].area_level | string | Level of geographical detail (e.g., 'suburb') |
| results[].area_name | string | Name of the suburb |
| results[].category | string | Zoning category (e.g., 'Residential Zones', 'Commercial Zones') |
| results[].name | string | Specific zone type (e.g., 'Low Density Residential', 'Mixed Use') |
| results[].geometry | object | GeoJSON geometry data of the zoning area (only included when geojson=true) |
Request Examples
cURL
Python
JavaScript
curl -X GET "https://www.microburbs.com.au/report_generator/api/suburb/zoning?suburb=Belmont%20North" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
Response Example
Response
{
"results": [
{
"area_level": "suburb",
"area_name": "Belmont North",
"category": "Residential Zones",
"name": "Medium Density Residential"
},
{
"area_level": "suburb",
"area_name": "Belmont North",
"category": "Residential Zones",
"name": "Low Density Residential"
},
{
"area_level": "suburb",
"area_name": "Belmont North",
"category": "Commercial Zones",
"name": "Business Park"
},
{
"area_level": "suburb",
"area_name": "Belmont North",
"category": "Commercial Zones",
"name": "Mixed Use"
}
]
}
