Listing History
The full story behind every property listing. Price changes, agent switches, withdrawals, and relists — every event timestamped and attributed. The data the portals don't show, all via API.
Full listing event timeline
Each agent's recent_listings[] contains the complete event history for that property. Every price change, withdrawal, and agent switch — in order.
Event types
The event_type field identifies what happened at each step in the listing's lifecycle.
Signals this unlocks
Properties with 2+ agent switches and 10%+ price drops signal genuine vendor urgency — before it shows up in Land Registry data.
Track properties that have been on the market 90+ days with no Under Offer event. Proactive buy-side intelligence.
Measure how often Agent B sells a property that Agent A withdrew. A direct metric of who salvages hard-to-sell stock.
API example — listing history in response
curl https://api.homedata.co.uk/api/agent_stats/100023336956/ \ -H "Authorization: Api-Key YOUR_KEY"
{
"agent_name": "Savills Bath",
"recent_listings": [
{
"listing_id": "...",
"display_address": "7 Royal Crescent...",
"property_sale_events": [
{
"event_type": "Added",
"date": "2024-01-09",
"price": 83500000
},
{
"event_type": "Under Offer",
"date": "2024-03-02",
"price": null
},
{
"event_type": "Sold STC",
"date": "2024-03-18",
"price": null
}
]
}
]
}