Property - History
Rental listing history
GET
/v1/properties/{gnaf_id}/rent-history30¢ per callAll For Rent records, most-recent first.
Price: 30¢ 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[HistoryRecord]fields returned to you
Array of:
datestringmay be nullpricenumbermay be nulltypestringmay be nulladdressstringmay be nullGET
/v1/properties/{gnaf_id}/rent-historycURL
curl --request GET \
--url 'https://api.microburbs.com.au/v1/properties/GANSW704074813/rent-history' \
--header 'Authorization: Bearer test'Example Responses
{
"data": [
{
"date": "2025-07-24",
"price": 750,
"type": "For Rent",
"address": "9 Mcdowall Place"
},
{
"date": "2022-10-10",
"type": "For Rent",
"address": "9 Mcdowall Place"
}
]
}Successful Response200
application/json
