Microburbs
Suburb - Development

Recent DA list

GET/v1/suburbs/{suburb_name}/development/da-list18¢ per call

Recent 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_namestringrequired

Query 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 null

Suburb (SAL) name — may be empty for per-address rows.

area_levelstringalways returned

'suburb' or 'address'.

suburbstringmay be null

Suburb the DA is in (when area_level=='address').

descriptionstringmay be null

Free-text description of the proposed works.

datestringmay be null

DA lodged date (YYYY-MM-DD).

categorystringmay be null

Coarse category — 'Renovation', 'New Dwelling', etc.

GET/v1/suburbs/{suburb_name}/development/da-list
cURL
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