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

Capital-growth drivers

GET/v1/suburbs/{suburb_name}/market/growth-drivers25¢ per call

Per-indicator capital-growth attribution for the suburb.

Each row pairs the suburb's own value for an indicator with the capital-growth differential our matched studies attribute to it, in percentage points. Covers supply & demand pressure, market signals, environmental risks and demographic composition.

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: 25¢ 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
GrowthDriversfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for this endpoint.

driversarray of GrowthDriveralways returned

One row per indicator that carries an attributed impact. Indicators with no value for this suburb, or no matching band, are omitted rather than returned as zero.

GET/v1/suburbs/{suburb_name}/market/growth-drivers
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/growth-drivers' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "drivers": [
      {
        "band": "(0.999, 1.51]",
        "basis": "nat_rel",
        "category": "supply_demand",
        "direction": "positive",
        "horizon_years": 2,
        "impact_pct_per_year": 1.11,
        "indicator": "Months of Supply",
        "key": "prop_list_months_of_supply",
        "source": "thresholds_v3_prod",
        "unit": "months",
        "value": 1
      },
      {
        "band": "present",
        "basis": "matched_control",
        "category": "risks",
        "direction": "neutral",
        "horizon_years": 1,
        "impact_pct_per_year": -0.29,
        "indicator": "Contamination",
        "key": "contamination",
        "source": "dbyd_matched_cg",
        "unit": "%",
        "value": 18.19
      },
      {
        "band": "Top",
        "basis": "nat_bin",
        "category": "demographics",
        "direction": "positive",
        "horizon_years": 4,
        "impact_pct_per_year": 0.43,
        "indicator": "Cultural Integration",
        "key": "cultural_integration",
        "source": "cultural_integration_sal",
        "unit": "score_0_100",
        "value": 61.8
      }
    ]
  }
}
Successful Response200
application/json