VOOZH about

URL: https://apify.com/one-api/rightmove-scraper/api/python

โ‡ฑ Rightmove Scraper - UK property listings details sold prices API in Python ยท Apify


Pricing

$3.00 / 1,000 listing returneds

Go to Apify Store

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.

Pricing

$3.00 / 1,000 listing returneds

Rating

0.0

(0)

Developer

๐Ÿ‘ ONE API

ONE API

Maintained by Community

Actor stats

0

Bookmarked

4

Total users

0

Monthly active users

a month ago

Last modified

Share

You might also like

Rightmove Scraper โ€” UK Property Listings & Prices

studio-amba/rightmove-scraper

Scrape property listings, prices, and details from Rightmove.co.uk โ€” the UK's largest property portal.

Rightmove Scraper โ€” UK Property Listings, Prices & Agents

bovi/rightmove-listings

Scrape UK property listings from Rightmove by search URL. Returns price, address, postcode, beds, baths, agent name & phone, coordinates, tenure and images, plus a per-listing quality score. No login, no proxy setup. Pay per result.

๐Ÿ‘ User avatar

Vitalii Bondarev

2

Rightmove UK Scraper

gio21/rightmove-scraper

Scrape real-estate listings from Rightmove.co.uk - the UK's #1 property portal. Price (ยฃ), bedrooms, property type, agency, location, images. Pay per listing.

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

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.

rightmove.co.uk-scraper

datascrapers/rightmove-co-uk-scraper

Extract property data from Rightmove.co.uk with ease. Get comprehensive property listings including images, prices, locations, sizes, and more.

Rightmove Scraper

thenetaji/rightmove-scraper

Scrape property listings and details from Rightmove. Supports search by location name, location ID, search URL, or direct property URLs.

You can access the Rightmove Scraper programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโ€™ll need an Apify account and your API token, found in Integrations settings in Apify Console.

๐Ÿ‘ Python

Python

๐Ÿ‘ JavaScript

JavaScript

CLI

๐Ÿ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={
9"property_inputs":[
10"148711631",
11"https://www.rightmove.co.uk/properties/148711631",
12"One Hyde Park, Knightsbridge, London, SW1X 7LA",
13],
14"search_inputs":[
15"London",
16"SW1A 1AA",
17],
18"branch_inputs":["1941"],
19"postcode_inputs":["SW1A 1AA"],
20}
21
22# Run the Actor and wait for it to finish
23run = client.actor("one-api/rightmove-scraper").call(run_input=run_input)
24
25# Fetch and print Actor results from the run's dataset (if there are any)
26print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
27for item in client.dataset(run["defaultDatasetId"]).iterate_items():
28print(item)
29
30# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start

Rightmove Scraper - UK property listings details sold prices API in Python

The Apify API client for Python is the official library that allows you to use Rightmove Scraper API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

Rightmove Scraper API in JavaScript

Rightmove Scraper API through CLI

Rightmove Scraper OpenAPI definition

Rightmove Scraper API