Listing Events
The complete transaction lifecycle for every UK property. Not just the final sale price — every event from the moment a property is listed to the day it completes, with dates and prices at each step.
Every step of the journey
Listing events are returned as a nested array on each transaction, ordered chronologically. Each event has a type, date, price, and source.
Response fields
Each object in the property_sale_events[] array contains these fields.
Status events (Added, Price Changed, Under Offer, Sold STC, Withdrawn) come from Home.co.uk's 30-year UK listing dataset — the same data powering one of the UK's longest-running property portals. Completed events come from HM Land Registry. We match them to a single UPRN to give you the full story in one API call.
API example
curl "https://api.homedata.co.uk/api/property_sales/?uprn=100023336956" \ -H "Authorization: Api-Key YOUR_KEY"
"property_sale_events": [
{
"event_type": "Added",
"date": "2024-01-12",
"price": 59500000,
"source": "Home.co.uk",
"agent": "Savills Bristol"
},
{
"event_type": "Price Changed",
"date": "2024-02-28",
"price": 57500000,
"source": "Home.co.uk",
"agent": null
},
{
"event_type": "Completed",
"date": "2024-05-28",
"price": 55800000,
"source": "Land Registry",
"agent": null
}
]