Suburb - Market
Supply pressure
GET
/v1/suburbs/{suburb_name}/market/supply-pressure10¢ per callFor-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_namestringrequiredQuery 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 returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
listings_90dintegermay be nullTotal 90-day listings across the suburb's MBs.
dwellingsintegermay be nullTotal dwelling stock across the suburb's MBs.
listings_per_100_dwellingsnumbermay be nullSuburb rollup: listings per 100 dwellings, last 90 days.
mbsarray of SupplyPressureMbalways returnedPer-mesh-block breakdown.
GET
/v1/suburbs/{suburb_name}/market/supply-pressurecURL
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
