Suburb - Sales
Recent sales (last 3 years)
GET
/v1/suburbs/{suburb_name}/sales/recent20¢ per callTop-20 properties sold in the suburb over the last 3 years, with beds/baths/land size, sale price and date, coordinates, and AVM comparison.
Price: 20¢ 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
RecentSalesfields returned to you
area_namestringalways returnedSuburb (SAL) name.
area_levelstringalways returnedAlways 'suburb' for these endpoints.
resultsarray of RecentSaleRowalways returnedSold properties, most significant first (max 20).
GET
/v1/suburbs/{suburb_name}/sales/recentcURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/suburbs/Belmont%20North/sales/recent' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"area_level": "suburb",
"area_name": "Belmont North",
"results": [
{
"address": "9 Kanundra Street",
"bathrooms": 3,
"bedrooms": 2,
"gnaf_pid": "GANSW704074941",
"lat": -33.02135461,
"lng": 151.66919805,
"property_type": "House",
"sold_date": "2026-03-30",
"sold_price": 1005000
},
{
"address": "9 Hope Street",
"bathrooms": 1,
"bedrooms": 3,
"gnaf_pid": "GANSW704073843",
"land_size": 844,
"lat": -33.01951863,
"lng": 151.67430967,
"property_type": "House",
"sold_date": "2026-03-27",
"sold_price": 910000
}
]
}
}Successful Response200
application/json
