Suburb - Development
Recent DA list
GET
/v1/suburbs/{suburb_name}/development/da-list18¢ per callRecent development applications lodged in the suburb.
Price: 18¢ per call.
Authorization
Request
The only values you send. Fields under Responses below are what comes back — you never pass those.
Path parameters
suburb_namestringrequiredQuery 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[DaRow]fields returned to you
Array of:
area_namestringmay be nullSuburb (SAL) name — may be empty for per-address rows.
area_levelstringalways returned'suburb' or 'address'.
suburbstringmay be nullSuburb the DA is in (when area_level=='address').
descriptionstringmay be nullFree-text description of the proposed works.
datestringmay be nullDA lodged date (YYYY-MM-DD).
categorystringmay be nullCoarse category — 'Renovation', 'New Dwelling', etc.
GET
/v1/suburbs/{suburb_name}/development/da-listcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/da-list' \
--header 'Authorization: Bearer test'Example Responses
{
"data": [
{
"area_name": "",
"area_level": "address",
"suburb": "Belmont North",
"description": "One storey Two Bedroom Secondary Dwelling - Lake Macquarie City Council CDC/103/2024",
"date": "2024-01-26",
"category": "New Dwelling"
},
{
"area_name": "",
"area_level": "address",
"suburb": "Belmont North",
"description": "Staged Development - Attached and Detached Dual Occupancy and Subdivision - Lake Macquarie City Council CC/164/2024",
"date": "2024-01-23",
"category": "New Dwelling"
},
{
"area_name": "",
"area_level": "address",
"suburb": "Belmont North",
"description": "1 into 3 lot Torrens Title Subdivision - Lake Macquarie City Council SWC/3/2024",
"date": "2024-01-23",
"category": "Subdivision"
}
]
}Successful Response200
application/json
