Recent DA list
/v1/suburbs/{suburb_name}/development/da-list18¢ per callRecent development applications lodged in the suburb.
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: 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_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_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.
/v1/suburbs/{suburb_name}/development/da-listcurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/da-list' \
--header 'Authorization: Bearer test'{
"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"
}
]
}