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

Gross rental yield per microburb

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

Gross rental yield for every microburb (mesh block) in the suburb — weekly rent x 52 over median price — with both inputs returned so the number is checkable, plus the best- and worst-yielding pockets. Values only; 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
SuburbYieldMapfields returned to you
suburbstringalways returned

Canonical SAL name.

metricstringalways returned

Always 'gross_rental_yield_house'.

unitstringalways returned

Always 'percent' — note /market/yield-pct reports the same metric as a decimal.

as_ofstringmay be null

Date of the surfaces (YYYY-MM-DD).

definitionstringalways returned

How the figure is derived.

n_microburbsintegeralways returned

Microburbs with both a rent and a price.

microburbsarray of YieldMbalways returned

Per-microburb yields, highest first.

highestobjectmay be null

Gross rental yield for one microburb, with both inputs.

lowestobjectmay be null

Gross rental yield for one microburb, with both inputs.

GET/v1/suburbs/{suburb_name}/market/yield-map
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/yield-map' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "suburb": "Belmont North",
    "metric": "gross_rental_yield_house",
    "unit": "percent",
    "as_of": "2026-08-16",
    "definition": "Gross rental yield for the mesh block: modelled median weekly house rent x 52, divided by the modelled median house price, as a percentage. Same definition as the suburb-wide yield at /market/yield-pct (which reports it as a decimal); gross, so before rates, strata, management or vacancy. Microburbs missing either the rent or the price are absent, not zero.",
    "n_microburbs": 58,
    "microburbs": [
      {
        "mb": "10439020000",
        "street": "Floraville",
        "gross_yield_pct": 6.65,
        "weekly_rent": 1140,
        "median_price": 892000
      }
    ],
    "highest": {
      "mb": "10439020000",
      "street": "Floraville",
      "gross_yield_pct": 6.65,
      "weekly_rent": 1140,
      "median_price": 892000
    },
    "lowest": {
      "mb": "10434330000",
      "street": "Arlington",
      "gross_yield_pct": 1.85,
      "weekly_rent": 570,
      "median_price": 1600000
    }
  }
}
Successful Response200
application/json