New supply — units vs houses
/v1/suburbs/{suburb_name}/development/supply10¢ per callNew dwellings (last 24 months) split units vs houses per mesh block plus a rollup.
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: 10¢ 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_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb'.
summaryobjectalways returnedSuburb rollup of new supply (sum of per-mesh-block counts).
mesh_blocksarray of SupplyMbalways returnedPer-mesh-block rows, most new supply first.
/v1/suburbs/{suburb_name}/development/supplycurl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/supply' \
--header 'Authorization: Bearer test'{
"data": {
"area_name": "Belmont North",
"area_level": "suburb",
"summary": {
"new_houses": 650,
"new_units": 410,
"total_new": 1060,
"pct_houses": 61.3,
"pct_units": 38.7
},
"mesh_blocks": [
{
"mb_code": "10694560000",
"new_houses": 15,
"new_units": 3,
"total_new": 18,
"pct_units": 16.7
}
]
}
}