Microburbs
Suburb - Development

New supply — units vs houses

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

New dwellings (last 24 months) split units vs houses per mesh block plus a rollup.

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

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb'.

summaryobjectalways returned

Suburb rollup of new supply (sum of per-mesh-block counts).

mesh_blocksarray of SupplyMbalways returned

Per-mesh-block rows, most new supply first.

GET/v1/suburbs/{suburb_name}/development/supply
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/supply' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "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
      }
    ]
  }
}
Successful Response200
application/json