Property - Comparables
Recent sales within a radius
GET
/v1/properties/{gnaf_id}/comparables/recent-sales-nearby20¢ per callRecent comparable sales in a small radius around the subject parcel.
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
gnaf_idstringrequiredQuery parameters
None — this endpoint accepts no query parameters. Call the path above with your bearer token and nothing else.
Responses
Successful Response
application/json
list[RecentSale]fields returned to you
Array of:
addressstringmay be nullStreet address.
sale_datestringmay be nullISO date (YYYY-MM-DD).
sale_pricenumbermay be nullSale price, AUD.
distance_mintegermay be nullDistance from the subject property in metres.
bed_countintegermay be nullBedrooms.
bath_countintegermay be nullBathrooms.
dwelling_typestringmay be nullhouse / unit / townhouse / ...
GET
/v1/properties/{gnaf_id}/comparables/recent-sales-nearbycURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/comparables/recent-sales-nearby' \
--header 'Authorization: Bearer test'Example Responses
{
"data": [
{
"address": "30 Arlington Street, Belmont North",
"bath_count": 2,
"bed_count": 3,
"distance_m": 65,
"dwelling_type": "house",
"sale_date": "2024-08-12",
"sale_price": 815000
}
]
}Successful Response200
application/json
