Suburb - Sales
Sales summary (3-year count + median)
GET
/v1/suburbs/{suburb_name}/sales/summary10¢ per callNumber of sales and median sold price in the suburb over the last 3 years.
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
SalesSummaryfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
sales_count_3yintegeralways returnedNumber of recorded sales in the last 3 years.
median_sold_price_3ynumbermay be nullMedian sold price (AUD) across those sales.
GET
/v1/suburbs/{suburb_name}/sales/summarycURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/sales/summary' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"median_sold_price_3y": 965000,
"sales_count_3y": 155
}
}Successful Response200
application/json
