Microburbs
Suburb - Development

Construction activity per mesh block

GET/v1/suburbs/{suburb_name}/development/construction-activity10¢ per call

Satellite-detected construction change per mesh block plus a suburb 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
SuburbConstructionActivityfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb'.

summaryobjectalways returned

Suburb rollup of per-mesh-block construction signals.

mesh_blocksarray of ConstructionMbalways returned

Per-mesh-block rows, highest score first.

GET/v1/suburbs/{suburb_name}/development/construction-activity
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/development/construction-activity' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_name": "Belmont North",
    "area_level": "suburb",
    "summary": {
      "mb_count": 66,
      "active_mb_count": 3,
      "avg_construction_score": -0.0456,
      "avg_ndbi_change": -0.0214
    },
    "mesh_blocks": [
      {
        "mb_code": "10694560000",
        "construction_score": 1.83,
        "ndbi_change": 0.061,
        "ndbi_2019": -0.112,
        "ndbi_2023": -0.051,
        "ndvi_change": -0.094
      }
    ]
  }
}
Successful Response200
application/json