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 - Risks

Capital-growth impact per hazard

GET/v1/suburbs/{suburb_name}/risks/capital-growth-impact12¢ per call

Matched-study capital-growth impact (%/yr) for bushfire, flood, contamination, mine subsidence, aircraft noise and surface acid sulfate, scaled by the share of properties affected.

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: 12¢ 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
SuburbRiskCgImpactfields returned to you
area_namestringalways returned

Canonical ABS SAL suburb name.

area_levelstringalways returned

Always 'suburb'.

total_propertiesintegeralways returned

Principal GNAF addresses in the suburb.

studystringalways returned

Provenance of the coefficients.

hazardsarray of HazardCgImpactalways returned

One entry per studied hazard.

GET/v1/suburbs/{suburb_name}/risks/capital-growth-impact
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/risks/capital-growth-impact' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_name": "Belmont North",
    "area_level": "suburb",
    "total_properties": 2727,
    "study": "Microburbs matched capital-growth study (DBYD) — treated minus control CAGR",
    "hazards": [
      {
        "key": "bushfire",
        "label": "Bushfire",
        "present": true,
        "affected_pct": 23.62,
        "coefficient_pct_per_year": 0.9,
        "impact_pct_per_year": 0.2126,
        "impact": "+0.21%/yr",
        "color_class": "neutral"
      },
      {
        "key": "mine_subsidence",
        "label": "Mine subsidence",
        "present": true,
        "affected_pct": 100,
        "coefficient_pct_per_year": 0.2,
        "impact_pct_per_year": 0.2,
        "impact": "+0.2%/yr",
        "color_class": "neutral"
      }
    ]
  }
}
Successful Response200
application/json