Property - Surroundings
Surrounding listing-history signals (200 m)
GET
/v1/properties/{gnaf_id}/surroundings/listing-history-signals20¢ per callLatest sold/rent dates and likely-owner-status signal per nearby property.
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
SurroundingListingSignalsfields returned to you
gnaf_pidstringalways returnedThe subject property's GNAF PID.
radius_mintegeralways returnedRadius of the search box around the subject, metres.
recent_window_yearsintegeralways returnedRecency window used to derive the signals (years).
countintegeralways returnedProperties with any listing history (never-listed properties carry no signal and are omitted).
signalsarray of ListingHistorySignalalways returnedPer-property signals, sorted by GNAF PID.
summaryobjectalways returnedCounts of each signal across the returned properties.
GET
/v1/properties/{gnaf_id}/surroundings/listing-history-signalscURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/surroundings/listing-history-signals' \
--header 'Authorization: Bearer test'Example Responses
{
"data": {
"count": 97,
"gnaf_pid": "GANSW704360755",
"radius_m": 200,
"recent_window_years": 10,
"signals": [
{
"gnaf_pid": "GANSW704349559",
"last_sold_date": "2021-11-23",
"last_sold_years_ago": 4.6,
"signal": "previously_for_sale"
},
{
"gnaf_pid": "GANSW704341221",
"last_sold_date": "2015-01-27",
"last_sold_years_ago": 11.4,
"signal": "no_recent_listings"
}
],
"summary": {
"no_recent_listings": 24,
"previously_for_sale": 55,
"previously_rented": 18
}
}
}Successful Response200
application/json
