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

Stock on market

GET/v1/suburbs/{suburb_name}/market/stock-on-market8¢ per call

Properties currently listed for sale in the suburb, split house/unit, with the suburb's rank among its peers.

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: 8¢ 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
StockOnMarketfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

stock_on_marketnumberalways returned

Total properties listed for sale.

rankintegermay be null

Position among peer suburbs (1 = most stock).

areasintegermay be null

Size of the peer group the rank is out of.

housenumbermay be null

Houses listed for sale.

unitnumbermay be null

Units listed for sale.

as_ofstringmay be null

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

GET/v1/suburbs/{suburb_name}/market/stock-on-market
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/stock-on-market' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "areas": 131,
    "as_of": "2026-08-09",
    "house": 20,
    "rank": 30,
    "stock_on_market": 21,
    "unit": 1
  }
}
Successful Response200
application/json