Replacing getAddress.io? Free drop-in replacement →

Sale Prices

Completed transaction prices from HM Land Registry — the authoritative record of what every UK property actually sold for. Price paid, tenure, property classification, and transaction date. 30 years of history.

Transaction history

Every completed sale, linked to the property's UPRN. Freehold or leasehold, new build or established — every transaction since 1995.

14 Maple Avenue, Bristol BS8 3AJ
UPRN 100023336956 · 4 transactions
property_sales
£143k
Jun 1997
£285k
Nov 2003
£425k
Aug 2012
£558k
May 2024
28 May 2024
Freehold · Semi-detached
£558,000
+31.3% vs 2012
19 Aug 2012
Freehold · Semi-detached
£425,000
+49.1% vs 2003
12 Nov 2003
Freehold · Semi-detached
£285,000
+99.3% vs 1997
14 Jun 1997
Freehold · Semi-detached · New build
£142,500
27 years of ownership history +291% total return

Response fields

Fields returned in each transaction object from the property_sales endpoint.

uprn string Unique Property Reference Number — the stable identifier across all transactions
price_paid integer Amount paid in pence (e.g. 55800000 = £558,000)
date_of_transfer string Completion date in ISO 8601 format (YYYY-MM-DD)
property_type string D (detached), S (semi), T (terraced), F (flat/maisonette), O (other)
tenure string F (freehold) or L (leasehold) — tenure type at time of sale
new_build boolean Whether the property was newly built at the time of this transaction
transaction_category string A (standard), B (additional price paid), C (repossession), D (developer)
display_address string Human-readable property address from our address index
Source

HM Land Registry Price Paid Data. Updated monthly. Covers England and Wales. Scotland and Northern Ireland use separate registers (not currently included).

API example

GET /api/property_sales/?uprn={uprn}
curl "https://api.homedata.co.uk/api/property_sales/?uprn=100023336956" \
  -H "Authorization: Api-Key YOUR_KEY"
Response 200 OK
{
  "count": 4,
  "results": [
    {
      "uprn": "100023336956",
      "price_paid": 55800000,
      "date_of_transfer": "2024-05-28",
      "property_type": "S",
      "tenure": "F",
      "new_build": false,
      "transaction_category": "A",
      "display_address": "14 Maple Avenue, Bristol",
      "property_sale_events": [...],
      "property_listings": [...]
    }
  ]
}