VOOZH about

URL: https://apify.com/nocodeventure/land-registry-price-paid-uk

โ‡ฑ Land Registry Price Paid UK ยท Apify


Pricing

from $5.00 / 1,000 results

Go to Apify Store

Land Registry Price Paid UK

Scrapes the UK HM Land Registry Price Paid Data. Search by address, postcode, town or street and filter by date range, price, property type, and estate type. Covers residential property sales in England and Wales from 1995 onwards.

Pricing

from $5.00 / 1,000 results

Rating

0.0

(0)

Developer

๐Ÿ‘ No-Code Venture

No-Code Venture

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

2 months ago

Last modified

Share

An Apify Actor that scrapes UK HM Land Registry Price Paid Data. Search for residential property sale prices in England and Wales by address, postcode, town, or street, with optional filters for date range, price, property type, estate type, and new-build status.

Data covers over 24 million transactions dating back to January 1995, updated monthly.

What it does

  • Look up sold prices by exact address (postcode + building number)
  • Search by area (town, street, or district)
  • Filter by date range, price range, property type, and estate type
  • Optionally restrict to new-build properties only
  • Handles pagination to retrieve large result sets

Input

Address

At least one of street or town must be provided. Postcode alone is not supported as it causes server-side timeouts โ€” use it as an additional narrowing filter alongside street or buildingName.

FieldTypeDescriptionDefault
postcodestringUK postcode (e.g. SW1A 1AA). Case-insensitive.โ€”
buildingNamestringHouse number or building name (PAON). Combined with postcode for exact property.โ€”
unitNamestringFlat or unit number (SAON). Use with buildingName to pinpoint a specific flat.โ€”
streetstringStreet name. Case-insensitive.โ€”
localitystringLocality (not always present in the data).โ€”
townstringTown or city name. Case-insensitive.โ€”
districtstringDistrict (not always present in the data).โ€”
countystringCounty (not always present in the data).โ€”

Filters

FieldTypeOptions / FormatDefault
dateFromstringYYYY-MM-DD โ€” earliest transaction date. Data available from 1995-01-01.โ€”
dateTostringYYYY-MM-DD โ€” latest transaction date.โ€”
minPriceintegerMinimum sale price in GBP (inclusive).โ€”
maxPriceintegerMaximum sale price in GBP (inclusive).โ€”
propertyTypesarraydetached, semi-detached, terraced, flat-maisonette, otherPropertyType[] (all)
estateTypestringfreehold or leasehold. Leave empty for both.โ€”
newBuildarray"true" (new builds), "false" (not new build). Leave empty for all.[] (all)

Performance

FieldTypeDescriptionDefault
maxResultsintegerTotal maximum records to fetch across all pages. Set to 0 for no limit. Use with caution on broad queries.1000
maxConcurrencyintegerMaximum parallel requests.5
maxRequestsPerMinuteintegerRate limit cap. Lower if getting 429 errors.120
proxyConfigurationobjectApify proxy settings.disabled

Pagination

FieldTypeDescriptionDefault
enablePaginationbooleanFetch results across multiple pages using OFFSET. Each page fires a separate request and billing event.false
pageSizeintegerRecords per request when pagination is enabled. Has no effect when pagination is disabled. Keep between 10โ€“500 for best results.100

When pagination is disabled, maxResults maps directly to the SPARQL LIMIT โ€” one request, one page.

When pagination is enabled, each request fetches up to pageSize records. The last page is automatically trimmed so the total never exceeds maxResults. Pages continue until fewer than pageSize records are returned (no more data) or maxResults is reached.


Example โ€” exact property lookup

{
"buildingName":"129",
"street":"HARBOUR ROAD",
"postcode":"BD6 3QX"
}

Example โ€” all sales on a street

{
"street":"DOWNING STREET",
"town":"LONDON"
}

Example โ€” area search with filters and pagination

{
"town":"MANCHESTER",
"dateFrom":"2020-01-01",
"dateTo":"2024-12-31",
"propertyTypes":["semi-detached","terraced"],
"estateType":"freehold",
"minPrice":100000,
"maxPrice":400000,
"maxResults":5000,
"enablePagination":true,
"pageSize":200
}

Example โ€” new builds only in an area

{
"town":"LONDON",
"newBuild":["true"],
"dateFrom":"2018-01-01"
}

Output

The dataset stores one JSON object per transaction, ordered by transaction date descending.

{
"transactionId":"237B17FE-B9CF-22AC-E063-4804A8C0EA3A",
"transaction":{
"price":285000,
"date":"2024-05-10",
"propertyType":"semi-detached",
"estateType":"freehold",
"newBuild":false
},
"address":{
"unitName":null,
"buildingName":"129",
"street":"HARBOUR ROAD",
"locality":"WIBSEY",
"town":"BRADFORD",
"district":"BRADFORD",
"county":"WEST YORKSHIRE",
"postcode":"BD6 3QX"
}
}

Top level

FieldTypeDescription
transactionIdstringUnique transaction GUID assigned by Land Registry

transaction object

FieldTypeDescription
pricenumberSale price in GBP
datestringTransaction date (YYYY-MM-DD)
propertyTypestringdetached, semi-detached, terraced, flat-maisonette, otherPropertyType
estateTypestringfreehold or leasehold
newBuildbooleanWhether the property was a new build at time of sale

address object

FieldTypeDescription
unitNamestringFlat / unit number (SAON, may be null)
buildingNamestringHouse number or building name (PAON)
streetstringStreet name
localitystringLocality (may be null)
townstringTown or city
districtstringDistrict (may be null)
countystringCounty (may be null)
postcodestringUK postcode

Pay Per Event Billing

This Actor uses Apify's Pay Per Event pricing โ€” you only pay for what actually runs.

EventCharged byDescription
apify-actor-startApify (auto)Once per run start
apify-default-dataset-itemApify (auto)Once per result record pushed
land-registry-queryCustomOnce per SPARQL query fired (including pagination pages)
retry-eventCustomOnce per retry on a failed request
event-proxyCustomOnce per run when using Apify Proxy (no group)
event-proxy-groupCustomOnce per run when using a proxy group (e.g. RESIDENTIAL)

You can cap total spend in the Apify Console when starting a run via Max total charge (USD) or Max paid dataset items.


Data source

Data is sourced from the HM Land Registry Price Paid Data, published under the Open Government Licence v3.0.

  • Covers residential property sales in England and Wales only
  • Updated monthly, with records from January 1995 onwards
  • Based on data collected at the time of registration โ€” may not reflect the most recent information

Additional licensing terms apply when re-publishing address data. See the HM Land Registry website for details.

Resources

You might also like

hmlr-price-paid

charles986/hmlr-price-paid

Fetch UK house sold prices from HM Land Registry Price Paid Data. Search by postcode or address โ€” returns price, date, property type, tenure and full address for every registered sale since 1995. For property investors, estate agents and researchers. No API key. England and Wales.

UK Land Registry Prices Scraper | Sold House Prices

parseforge/uk-land-registry-prices-scraper

Extract UK HM Land Registry Price Paid records with address, postcode, price, property type, tenure, and transaction date. Filter by postcode or date range. Useful for realtors, property investors, and analysts tracking the UK residential housing market.

UK Sold House Prices Scraper โ€” Land Registry Price Paid

vladignatyev/uk-land-registry-scraper

Download UK sold house prices (HM Land Registry Price Paid Data) as clean JSON, CSV or Excel โ€” uncapped, by postcode, town, county or year, with a monthly monitor for new sales. Price, date, address, property type and tenure. The sold-price dataset for valuers, PropTech, investors and analysts.

๐Ÿ‘ User avatar

Vladimir Ignatev

2

UK Land Registry Price Paid โ€” Valuation & Deal Finder

ryanclinton/uk-land-registry

Turn HM Land Registry Price Paid data into decisions: fair value, comparable sales, deal-check verdicts, market scores, repeat-sale growth, street rankings and below-market deal finding across England & Wales. Deterministic, no AI, free government data.

13

UK Landregistry Sold Price History Scraper

dhrumil/uk-landregistry-sold-price-history-scraper

Scrape UK Land Registry sold price data by postcode or outcode. Get structured datasets grouped by house number/street for real estate analysis, matching, and enrichment. Export in JSON/CSV/Excel. Ideal for Rightmove, Zoopla, and UK property projects.

๐Ÿ‘ User avatar

Dhrumil Bhankhar

26

5.0

Rightmove Scraper

one-api/rightmove-scraper

Scrape Rightmove.co.uk UK property data โ€” listings, full property details, branches (estate agents), Land Registry sold-price history, postcode to address lookup, and search-box autocomplete. Search by location, postcode, lat/lng radius, or paste-a-URL.

Land.com Listing Scraper ๐Ÿž๏ธ

easyapi/land-com-listing-scraper

Scrape land and property listings from Land.com, including detailed property information, prices, acreage, broker details, and more. Perfect for real estate analysis and market research.

Land Scraper filter by Location Scraper

getdataforme/land-scraper-filter-by-location-scraper

Land Scraper efficiently extracts property listings from Land.com, including acreage, prices, locations, and broker details. Tailor searches by location and filters for accurate, structured results. Ideal for real estate insights.

12

Rightmove UK Property Scraper

cryptosignals/rightmove-scraper

Extract UK property listings from Rightmove. Get address, price, bedrooms, bathrooms, property type, agent, photos, and listing date. Ideal for UK real estate analytics and investment research. PPE pricing โ€” pay only for results.

1

Land ProductInfo Scraper

getdataforme/land-productInfo-scraper

The Land ProductInfo Scraper efficiently extracts detailed property data from land.com, ideal for real estate professionals and analysts. It features high data quality, scalable performance, and customizable outputs in JSON, CSV, or Excel....