Microburbs
Property - Context

Nearby for-sale listings

GET/v1/properties/{gnaf_id}/context/nearby-for-sale20¢ per call

Currently 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_idstringrequired

Query parameters

radius_kmnumber0.15optional

Search radius in km (0.1-5).

Responses

Successful Response

application/json
NearbyForSalefields returned to you
gnaf_idstringalways returned

Subject property GNAF id.

center_latnumberalways returned

Subject property latitude.

center_lngnumberalways returned

Subject property longitude.

radius_kmnumberalways returned

Search radius used (km).

countintegeralways returned

Number of listings returned (0-30).

listingsarray of NearbyForSaleListingalways returned

For-sale listings, newest listing date first.

GET/v1/properties/{gnaf_id}/context/nearby-for-sale
cURL
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