Microburbs
Suburb - Market

Supply pressure

GET/v1/suburbs/{suburb_name}/market/supply-pressure10¢ per call

For-sale listings per 100 dwellings (90 days) — per mesh block + suburb rollup.

Price: 10¢ 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

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
SupplyPressurefields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

listings_90dintegermay be null

Total 90-day listings across the suburb's MBs.

dwellingsintegermay be null

Total dwelling stock across the suburb's MBs.

listings_per_100_dwellingsnumbermay be null

Suburb rollup: listings per 100 dwellings, last 90 days.

mbsarray of SupplyPressureMbalways returned

Per-mesh-block breakdown.

GET/v1/suburbs/{suburb_name}/market/supply-pressure
cURL
curl --request GET \
  --url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/market/supply-pressure' \
  --header 'Authorization: Bearer test'
Example Responses
{
  "data": {
    "area_level": "suburb",
    "area_name": "Belmont North",
    "dwellings": 3980,
    "listings_90d": 42,
    "listings_per_100_dwellings": 1.06,
    "mbs": [
      {
        "dwellings": 54,
        "listings_90d": 0,
        "listings_per_100_dwellings": 0,
        "mb": "11205845900"
      }
    ]
  }
}
Successful Response200
application/json