Replacing getAddress.io? Free drop-in replacement →
Our Data / Agent & Market / Time to Sell

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.

BS8 1PX — Days to SSTC
Last 12 months · all property types
UK avg: 58 days
Savills Bristol 34 days
Hamptons 38 days
Knight Frank 41 days
Connells 52 days
UK average 58 days
Purple Bricks 67 days
Faster than average
Near average
Slower than average
avg_time_to_sstc
Added → Sold STC

Average days from first listing event to Sold STC. The clearest measure of agent speed — excludes completion delays outside agent control.

avg_time_on_market
Added → Last event

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[].

avg_time_to_sstc integer Average days from Added to Sold STC
avg_time_on_market integer Average days from Added to final listing event
listing_count integer Number of listings in the calculated period
sales_count integer Completed sales — denominator for SSTC metric

What you can build

Agent speed leaderboard

Rank every agent in a postcode by avg days to SSTC — the metric that matters to vendors. Publishable as a tool or insight.

Vendor decision support

Help sellers choose between two agents with objective speed data — not just 'we have a big database of buyers'.

Market liquidity signal

Track avg_time_to_sstc across a whole outcode over time. Rising days = softening market before price falls appear.

Mortgage & valuation timing

Lenders and surveyors need realistic SSTC timelines. Per-area, per-type data beats national averages.

API example

GET /api/agent_stats/{uprn}/ cURL
curl https://api.homedata.co.uk/api/agent_stats/100023336956/ \
  -H "Authorization: Api-Key YOUR_KEY"
Speed fields in response 200 OK
{
  "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
    }
  ]
}