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

Recent price movement (last 4 weeks)

GET/v1/suburbs/{suburb_name}/market/recent-price-movement15¢ per call

The last four weekly smart-median observations — house price, unit price and house rent — each with its week-on-week percentage change.

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: 15¢ 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
RecentPriceMovementfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

weeksarray of RecentPriceWeekalways returned

Up to 4 weekly rows, oldest first.

GET/v1/suburbs/{suburb_name}/market/recent-price-movement
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/recent-price-movement' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "weeks": [
      {
        "date": "2026-07-19",
        "house_price": 1120000,
        "house_price_change_pct": 0,
        "house_rent": 650,
        "house_rent_change_pct": 0
      },
      {
        "date": "2026-08-09",
        "house_price": 1130000,
        "house_price_change_pct": 0.89,
        "house_rent": 660,
        "house_rent_change_pct": 1.54
      }
    ]
  }
}
Successful Response200
application/json