Microburbs
Live sandbox. Send any request below against one sample suburb and property — no signup needed. For full coverage, create an API key.
Classic docs
Microburbs Property Data API
Suburb - Development

Dwelling & population density

GET/v1/suburbs/{suburb_name}/development/density5¢ per call

Dwellings and people per km², plus the land area and counts behind them.

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: 5¢ 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

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.

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
SuburbDensityfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb'.

dwellings_per_km2integermay be null

Dwelling density from the Microburbs suburb profile — the figure the suburb report headlines. Measured around the suburb's properties, so it differs from `boundary_dwellings_per_km2`. Null for suburbs with no profile row (mostly rural / non-residential SALs).

people_per_km2integermay be null

Population density from the same suburb profile, on the same denominator as `dwellings_per_km2`.

density_levelstringmay be null

Band the report labels `dwellings_per_km2` with: Low (<1,000), Mid (1,000–2,999), High (3,000+).

area_km2numbermay be null

Land area of the ABS SAL boundary in km², summed from the equal-area mesh-block areas ABS publishes.

dwellingsintegermay be null

Census dwelling count across the suburb's mesh blocks.

populationintegermay be null

Census usual-resident population across the suburb's mesh blocks.

boundary_dwellings_per_km2numbermay be null

`dwellings / area_km2` — the whole-of-boundary ratio.

boundary_people_per_km2numbermay be null

`population / area_km2` — the whole-of-boundary ratio.

GET/v1/suburbs/{suburb_name}/development/density
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/density' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_name": "Belmont North",
    "area_level": "suburb",
    "dwellings_per_km2": 1002,
    "people_per_km2": 2575,
    "density_level": "Mid",
    "area_km2": 3.6314,
    "dwellings": 2453,
    "population": 6280,
    "boundary_dwellings_per_km2": 675.5,
    "boundary_people_per_km2": 1729.4
  }
}
Successful Response200
application/json