Documentation
Version V1.0.2
GET Property History
https://www.microburbs.com.au/report_generator/api/property/history
Retrieves the complete transaction history for a specific property, including sale dates, prices, and transaction types in chronological order.
Important: The id parameter refers to the property's GNAF ID.
You can retrieve this value from Get GNAF_ID (Geocoder) API Endpoint. Click to see documentation

Parameters

Name Type Required Description
id text Required Property identifier (GnafID)

Response Schema

Field Type Description
results array Array of property transaction records in chronological order
results[].address string Property street address
results[].date string Transaction date in GMT format
results[].price number Transaction price in AUD (null if price not disclosed)
results[].type string Transaction type (e.g., 'Sold', 'For Sale', 'For Rent')

Request Examples

cURL
Python
JavaScript
curl -X GET "https://www.microburbs.com.au/report_generator/api/property/history?suburb=Belmont%20North" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"

Response Example

Response
{ "results": [ { "address": "27 Arlington Street", "date": "Mon, 01 May 2023 00:00:00 GMT", "price": null, "type": "For Sale" }, { "address": "27 Arlington Street", "date": "Wed, 26 Apr 2023 00:00:00 GMT", "price": 759000, "type": "For Sale" }, { "address": "27 Arlington Street", "date": "Fri, 08 Apr 2022 00:00:00 GMT", "price": 615000, "type": "Sold" }, { "address": "27 Arlington Street", "date": "Thu, 15 Mar 2012 00:00:00 GMT", "price": 220000, "type": "Sold" } ] }
Try it in Sandbox