Microburbs
Suburb - Sales

Sales summary (3-year count + median)

GET/v1/suburbs/{suburb_name}/sales/summary10¢ per call

Number 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_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
SalesSummaryfields returned to you
area_namestringalways returned

Suburb (SAL) name.

area_levelstringalways returned

Always 'suburb' for these endpoints.

sales_count_3yintegeralways returned

Number of recorded sales in the last 3 years.

median_sold_price_3ynumbermay be null

Median sold price (AUD) across those sales.

GET/v1/suburbs/{suburb_name}/sales/summary
cURL
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