Property - Context
Nearby for-sale listings
GET
/v1/properties/{gnaf_id}/context/nearby-for-sale20¢ per callCurrently for-sale listings within radius_km of the property
(newest first, max 30) with AVM and rent-yield 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
gnaf_idstringrequiredQuery parameters
radius_kmnumber0.1–5optionalSearch radius in km (0.1-5).
Responses
Successful Response
application/json
NearbyForSalefields returned to you
gnaf_idstringalways returnedSubject property GNAF id.
center_latnumberalways returnedSubject property latitude.
center_lngnumberalways returnedSubject property longitude.
radius_kmnumberalways returnedSearch radius used (km).
countintegeralways returnedNumber of listings returned (0-30).
listingsarray of NearbyForSaleListingalways returnedFor-sale listings, newest listing date first.
GET
/v1/properties/{gnaf_id}/context/nearby-for-salecURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/context/nearby-for-sale' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"center_lat": -33.802479,
"center_lng": 151.219715,
"count": 2,
"gnaf_id": "GANSW704360755",
"listings": [
{
"address": "8 The Bulwark, Castlecrag NSW 2068",
"avm": 4380000,
"bathrooms": 2,
"bedrooms": 4,
"discount_pct": 2.7,
"gnaf_pid": "GANSW704357382",
"land_size": 696,
"lat": -33.8019,
"listing_date": "2026-06-14",
"lng": 151.2205,
"price": 4500000,
"price_label": "$4,500,000 Guide",
"property_type": "House",
"weekly_rent": 1850,
"yield_pct": 2.1
}
],
"radius_km": 1
}
}Successful Response200
application/json
