Suburb - Development
Development applications
GET
/v1/suburbs/{suburb_name}/development/applications15¢ per callRecent development applications (up to 100, newest first) with category counts.
Price: 15¢ 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
SuburbDevelopmentApplicationsfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb'.
totalintegeralways returnedApplications returned (capped at 100).
min_datestringmay be nullEarliest DA on record for the suburb (full history, not just the returned list).
max_datestringmay be nullMost recent DA date on record.
categoriesarray of DaCategoryCountalways returnedCategory counts across the returned applications.
applicationsarray of DevelopmentDaalways returnedDA records, newest first.
GET
/v1/suburbs/{suburb_name}/development/applicationscURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/applications' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"total": 100,
"min_date": "2019-12-02",
"max_date": "2026-06-18",
"categories": [
{
"category": "New Dwelling",
"count": 21
},
{
"category": "Renovation",
"count": 48
},
{
"category": "Demolition",
"count": 9
},
{
"category": "Other",
"count": 22
}
],
"applications": [
{
"id": 99033512,
"title": "Secondary dwelling",
"address": "38 Buttaba Avenue Belmont North NSW 2280",
"lat": -33.02082551,
"lng": 151.676206648,
"stage": "under_assessment",
"stage_display": "Under Assessment",
"date": "2026-06-18",
"category": "New Dwelling",
"dollar_value": 271740
}
]
}
}Successful Response200
application/json
