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

Median sale price per microburb

GET/v1/suburbs/{suburb_name}/market/median-price-map20¢ per call

Median house price for every microburb (mesh block) in the suburb, with its modal street name, plus the dearest and cheapest pockets. Values only — the matching polygons come from /shapes/mesh-blocks.

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: 20¢ 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
SuburbMedianPriceMapfields returned to you
suburbstringalways returned

Canonical SAL name.

metricstringalways returned

Always 'median_house_price'.

unitstringalways returned

Always 'AUD'.

as_ofstringmay be null

Date of the price surface (YYYY-MM-DD).

definitionstringalways returned

How the figure is derived.

n_microburbsintegeralways returned

Microburbs with a price.

microburbsarray of MedianPriceMbalways returned

Per-microburb prices, highest first.

highestobjectmay be null

Median house price for one microburb (mesh block).

lowestobjectmay be null

Median house price for one microburb (mesh block).

GET/v1/suburbs/{suburb_name}/market/median-price-map
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/median-price-map' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "suburb": "Belmont North",
    "metric": "median_house_price",
    "unit": "AUD",
    "as_of": "2026-08-09",
    "definition": "Modelled median (50th-percentile) house price for the mesh block, from the modelled per-microburb price surface. Mesh block = 'microburb', the smallest ABS geography (~30-60 dwellings). Mesh blocks with too little signal are absent rather than zero.",
    "n_microburbs": 63,
    "microburbs": [
      {
        "mb": "10434032000",
        "street": "Pacific",
        "median_price": 3843000
      }
    ],
    "highest": {
      "mb": "10434032000",
      "street": "Pacific",
      "median_price": 3843000
    },
    "lowest": {
      "mb": "10439043000",
      "street": "Lentara",
      "median_price": 625900
    }
  }
}
Successful Response200
application/json