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 weekly rent per microburb

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

Median advertised weekly house rent 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
SuburbRentMapfields returned to you
suburbstringalways returned

Canonical SAL name.

metricstringalways returned

Always 'median_weekly_rent_house'.

unitstringalways returned

Always 'AUD_per_week'.

as_ofstringmay be null

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

definitionstringalways returned

How the figure is derived.

n_microburbsintegeralways returned

Microburbs with a rent.

microburbsarray of RentMbalways returned

Per-microburb rents, dearest first.

highestobjectmay be null

Median weekly house rent for one microburb (mesh block).

lowestobjectmay be null

Median weekly house rent for one microburb (mesh block).

GET/v1/suburbs/{suburb_name}/market/rent-map
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/rent-map' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "suburb": "Belmont North",
    "metric": "median_weekly_rent_house",
    "unit": "AUD_per_week",
    "as_of": "2026-08-16",
    "definition": "Modelled median (50th-percentile) advertised weekly rent for a house in the mesh block. Mesh block = 'microburb', the smallest ABS geography (~30-60 dwellings). Microburbs with too little rental signal are absent rather than zero. Compare the suburb-wide figure at /market/median-rent.",
    "n_microburbs": 58,
    "microburbs": [
      {
        "mb": "10439020000",
        "street": "Floraville",
        "weekly_rent": 1140
      }
    ],
    "highest": {
      "mb": "10439020000",
      "street": "Floraville",
      "weekly_rent": 1140
    },
    "lowest": {
      "mb": "10434270000",
      "street": "Somerset",
      "weekly_rent": 519
    }
  }
}
Successful Response200
application/json