Microburbs
Property - Comparables

Recent sales within a radius

GET/v1/properties/{gnaf_id}/comparables/recent-sales-nearby20¢ per call

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

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
list[RecentSale]fields returned to you
Array of:
addressstringmay be null

Street address.

sale_datestringmay be null

ISO date (YYYY-MM-DD).

sale_pricenumbermay be null

Sale price, AUD.

distance_mintegermay be null

Distance from the subject property in metres.

bed_countintegermay be null

Bedrooms.

bath_countintegermay be null

Bathrooms.

dwelling_typestringmay be null

house / unit / townhouse / ...

GET/v1/properties/{gnaf_id}/comparables/recent-sales-nearby
cURL
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