Time to Sell
How many days does it actually take each agent to go from "Added" to "Sold STC"? Average and median, by agent, area, property type, and price band. The speed metric that matters.
Agent speed comparison
avg_time_to_sstc and avg_time_on_market — days from Added to each milestone, per agent in a given radius.
Average days from first listing event to Sold STC. The clearest measure of agent speed — excludes completion delays outside agent control.
Total time on market including re-listings, withdrawals, and returns. Captures the full drag of difficult-to-sell stock.
Response fields
Speed-related fields returned per agent in results[].
What you can build
Rank every agent in a postcode by avg days to SSTC — the metric that matters to vendors. Publishable as a tool or insight.
Help sellers choose between two agents with objective speed data — not just 'we have a big database of buyers'.
Track avg_time_to_sstc across a whole outcode over time. Rising days = softening market before price falls appear.
Lenders and surveyors need realistic SSTC timelines. Per-area, per-type data beats national averages.
API example
curl https://api.homedata.co.uk/api/agent_stats/100023336956/ \ -H "Authorization: Api-Key YOUR_KEY"
{
"count": 12,
"results": [
{
"agent_name": "Savills Bristol",
"listing_count": 87,
"sales_count": 71,
"avg_time_to_sstc": 34,
"avg_time_on_market": 41,
"market_share_pct": 32.1
},
{
"agent_name": "Knight Frank",
"listing_count": 65,
"sales_count": 49,
"avg_time_to_sstc": 41,
"avg_time_on_market": 53,
"market_share_pct": 23.9
}
]
}