# Rightmove Scraper (`one-api/rightmove-scraper`) Actor

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.

- **URL**: https://apify.com/one-api/rightmove-scraper.md
- **Developed by:** [ONE API](https://apify.com/one-api) (community)
- **Categories:** Real estate, Lead generation
- **Stats:** 6 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00 / 1,000 listing returneds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Rightmove Scraper

Scrape **Rightmove.co.uk** (the UK's #1 property portal) — full property details, search listings, branch / estate-agent details, Land Registry sold-price history, postcode → address lookup, and search-box autocomplete — all from one Actor. Backed by [realtyapi.io](https://realtyapi.io)'s real-time Rightmove API.

⭐️ Found this useful? Please leave 5 stars! Issues / requests: 📬 **oneapi.project@gmail.com**

***

### What you can do

| Section | What it does | Input format |
|---|---|---|
| 🏠 **Property Details** | Full details for a specific listing | Rightmove `property_id` digits, listing URL, or full UK address — auto-detected per row |
| 🔎 **Search Listings** | Paginated search with full filter set | location string, UK postcode (`SW1A 1AA` or outcode `SW1A`), `lat,lng,radius_mi`, or Rightmove search URL |
| 🔍 **Autocomplete** | Search-box typeahead suggestions (regions, outcodes, stations) — each result has a `locationIdentifier` you can feed into a search URL | partial query string |
| 💰 **Sold Prices** | Land Registry sold-price history with full transaction history per address | location, postcode, or outcode |
| 🏢 **Branch / Estate Agent Details** | Full branch profile (name, address, telephone, opening hours, logo, sale/rent counts) | numeric `branchId` from any search/details row |
| 📮 **Postcode → Address** | Resolve a UK postcode to its list of full addresses (with internal ids) | full UK postcode |

You can fill any combination of sections in a single run — leave the others empty.

***

### Output

Each listing / property / branch / autocomplete suggestion / sold-price record / address is pushed as **one dataset row**, flattened to friendly columns plus a `Raw` column with the original JSON.

Key columns:

| Mode | Input Given | Property ID | Price | Beds | Address | Postcode | Branch Name | Listing URL | Raw |
|---|---|---|---|---|---|---|---|---|---|
| `search/bylocation` | London (p1) | 148711631 | £60,000,000 | 5 | One Hyde Park, Knightsbridge, London, SW1X | SW1X 7LJ | Global 1 | https://www.rightmove.co.uk/properties/148711631 | `{...}` |
| `details/byid` | 148711631 | 148711631 | £60,000,000 | 5 | One Hyde Park, Knightsbridge, London, SW1X | SW1X 7LJ | Global 1 | https://www.rightmove.co.uk/properties/148711631 | `{...}` |
| `sold-prices` | London (p1) | … | £90,000,000 | – | Flat 1.01, The Knightsbridge Apartments, Knightsbridge, London SW7 1RH | – | – | https://www.rightmove.co.uk/house-prices/details/… | `{...}` |

Plus: `Price Raw` (numeric), `Price Qualifier`, `Monthly Rent` (RENT channel), `Property Type` / `Sub Type`, `Latitude`, `Longitude`, `Size`, `First Visible Date`, `Photos` (cover URL), `Photo Count`, `Floorplan Count`, `Key Features`, `Full Description`, all `Branch *` fields, `Location Identifier` (autocomplete), `Date Sold` / `Tenure` (sold-prices).

For nested / large fields (full photo arrays, transaction history, agent opening hours, etc.) the complete upstream JSON is in the `Raw` column.

***

### Sample input

```json
{
    "property_inputs": [
        "148711631",
        "https://www.rightmove.co.uk/properties/148711631",
        "One Hyde Park, Knightsbridge, London, SW1X 7LA"
    ],
    "search_inputs": ["London", "SW1A 1AA"],
    "searchType": "BUY",
    "propertyType": "flat",
    "priceRange": "min:500000,max:1500000",
    "bedroomsRange": "min:2",
    "sortOrder": "newest",
    "pages": 2,
    "resultCount": 25,

    "autocomplete_inputs": ["Clapham Junction", "Manchester"],
    "sold_price_inputs": ["London"],
    "soldPriceType": "flat",
    "soldIn": 3,

    "branch_inputs": ["1941"],
    "postcode_inputs": ["SW1A 1AA"]
}
```

***

### Search filters (apply to all `search_inputs`)

- **searchType** — `BUY` (default) | `RENT`
- **propertyType** — comma list of `house, detached, semi_detached, terraced, flat, bungalow, commercial, land, park_home, student_halls, other`
- **priceRange** — `min:500000` | `max:1500000` | `min:500000,max:1500000` (RENT = £/month)
- **bedroomsRange / bathroomsRange** — `min:2` | `max:4` | `min:2,max:4`
- **radius** — miles around the resolved location centre (0–40)
- **sortOrder** — `highest_price`, `lowest_price`, `newest`, `oldest`, `distance`
- **pages** — how many pages to fetch (1–50). Each page = `resultCount` listings.
- **resultCount** — 1–40 per page (Rightmove server cap), default 25
- **mustHave / dontShow** — comma list of `garden, parking, new_home, retirement, house_share, shared_ownership, auction, student`
- **furnishType** — RENT only — `furnished, part_furnished, unfurnished`
- **letType** — RENT only — `long_term, short_term, student`
- **keywords** — free-text description search (e.g. `loft conversion,balcony`)
- **daysSinceAdded** — 1 / 3 / 7 / 14
- **includeUnavailable** — toggle: include sold / let-agreed listings

Filters apply to **every** `search_inputs` row in the run.

### Sold-price filters

- **soldPriceType** — `detached, semi_detached, terraced, flat, other`
- **soldTenure** — `FREEHOLD, LEASEHOLD`
- **soldIn** — last N years (1, 3, 5, …)

***

### Pricing

**Pay per result** — you only pay for dataset items the Actor pushes. Failed inputs return a row with `Status: ERROR: …` and are billed the same as a successful row.

To cap spend, set **Max paid dataset items** on the run page.

***

### Tips

- **Need just one property?** Use the `property_inputs` section — auto-detects `property_id`, listing URL, or full UK address.
- **Pull all listings in a city?** Use `search_inputs: ["London"]` and crank `pages` (each page up to 40 results — Rightmove server cap).
- **Use a lat/lng circle?** Format: `51.5074,-0.1278,3` (last value is radius in miles).
- **Replicate a Rightmove search URL?** Drop the URL straight into `search_inputs` — all filter params embedded in the URL are honoured.
- **Looking up an estate agent?** Take any `branch.id` from a search/details row and feed it into `branch_inputs`.
- **Cleaning a CRM postcode list?** Use `postcode_inputs` to expand each postcode into its full list of UK addresses.
- **Researching market history?** Use `sold_price_inputs` for Land Registry data — includes full transaction history per address in the `Raw` column.

# Actor input Schema

## `property_inputs` (type: `array`):

Auto-detects each entry: digits → property\_id, http(s) URL → listing URL, anything else → address. Each row = 1 property detail call.

## `search_inputs` (type: `array`):

Auto-detects each entry. Examples:
• `London` (location)
• `SW1A 1AA` or `SW1A` (UK postcode / outcode)
• `51.5074,-0.1278,3` (lat,lng,radius\_miles)
• `https://www.rightmove.co.uk/property-for-sale/find.html?locationIdentifier=REGION%5E87490` (search URL)

Filters below apply to every search. Each LISTING is pushed as one dataset item.

## `searchType` (type: `string`):

BUY (default) or RENT. RENT returns lettings with `monthlyRent` populated; price ranges are interpreted as £/month.

## `propertyType` (type: `string`):

Comma-separated. Leave empty for all. Allowed: house, detached, semi\_detached, terraced, flat, bungalow, commercial, land, park\_home, student\_halls, other. Example: `detached,flat`.

## `priceRange` (type: `string`):

`min:500000`, `max:1500000`, or `min:500000,max:1500000`. For RENT channel, values are £/month.

## `bedroomsRange` (type: `string`):

Examples: `min:2`, `max:4`, `min:2,max:4`.

## `bathroomsRange` (type: `string`):

Examples: `min:1`, `max:3`, `min:1,max:3`.

## `radius` (type: `string`):

Radius in miles around the resolved location centre (0-40). Default empty = region only. Used by bylocation / byzip searches.

## `sortOrder` (type: `string`):

How to sort search results.

## `pages` (type: `integer`):

1-based. Each page = up to `Result Count` listings.

## `resultCount` (type: `integer`):

Min 1, Max 40 (Rightmove server cap). Default 25.

## `mustHave` (type: `string`):

Comma-separated characteristics listings must have. Accepted: garden, parking, new\_home, retirement, house\_share, shared\_ownership, auction, student. Example: `garden,parking`.

## `dontShow` (type: `string`):

Comma-separated characteristics to exclude. Same vocabulary as Must Have. Example: `retirement,shared_ownership`.

## `furnishType` (type: `string`):

Comma-separated. Accepted: furnished, part\_furnished, unfurnished.

## `letType` (type: `string`):

Letting term.

## `keywords` (type: `string`):

Free-text keyword search over the listing description. Comma-separate multiple. Examples: `garden`, `loft conversion,balcony`, `period property`.

## `daysSinceAdded` (type: `string`):

Restrict to listings added in the last N days. Common values: 1, 3, 7, 14.

## `includeUnavailable` (type: `boolean`):

Include sold / let-agreed / unavailable listings.

## `autocomplete_inputs` (type: `array`):

Rightmove search-box typeahead. Returns region / outcode / station suggestions for each query, each with a `locationIdentifier` ready to feed into a search URL.

## `sold_price_inputs` (type: `array`):

UK sold-price history via Land Registry. Examples: `London`, `SW1A`, `Manchester`. Filters below (sold-price filters section) apply to all queries.

## `soldPriceType` (type: `string`):

Filter sold-price results to a single property type.

## `soldTenure` (type: `string`):

Freehold or Leasehold sales.

## `soldIn` (type: `integer`):

Last N years to include (1, 3, 5).

## `branch_inputs` (type: `array`):

Rightmove branch (estate agent) numeric id. Source from `branch.id` on any /search or /details result. Returns branch name, address, telephone, opening hours, logo URLs, lettings/sale counts.

## `postcode_inputs` (type: `array`):

Returns the list of full UK addresses (with internal `id`) for each postcode. Useful for address-level resolution before a /details/\* call.

## Actor input object example

```json
{
  "property_inputs": [
    "148711631",
    "https://www.rightmove.co.uk/properties/148711631",
    "One Hyde Park, Knightsbridge, London, SW1X 7LA"
  ],
  "search_inputs": [
    "London",
    "SW1A 1AA"
  ],
  "searchType": "BUY",
  "propertyType": "",
  "priceRange": "",
  "bedroomsRange": "",
  "bathroomsRange": "",
  "radius": "",
  "sortOrder": "newest",
  "pages": 1,
  "resultCount": 25,
  "mustHave": "",
  "dontShow": "",
  "furnishType": "",
  "letType": "",
  "keywords": "",
  "daysSinceAdded": "",
  "includeUnavailable": false,
  "soldPriceType": "",
  "soldTenure": "",
  "soldIn": 0,
  "branch_inputs": [
    "1941"
  ],
  "postcode_inputs": [
    "SW1A 1AA"
  ]
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "property_inputs": [
        "148711631",
        "https://www.rightmove.co.uk/properties/148711631",
        "One Hyde Park, Knightsbridge, London, SW1X 7LA"
    ],
    "search_inputs": [
        "London",
        "SW1A 1AA"
    ],
    "branch_inputs": [
        "1941"
    ],
    "postcode_inputs": [
        "SW1A 1AA"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("one-api/rightmove-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "property_inputs": [
        "148711631",
        "https://www.rightmove.co.uk/properties/148711631",
        "One Hyde Park, Knightsbridge, London, SW1X 7LA",
    ],
    "search_inputs": [
        "London",
        "SW1A 1AA",
    ],
    "branch_inputs": ["1941"],
    "postcode_inputs": ["SW1A 1AA"],
}

# Run the Actor and wait for it to finish
run = client.actor("one-api/rightmove-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "property_inputs": [
    "148711631",
    "https://www.rightmove.co.uk/properties/148711631",
    "One Hyde Park, Knightsbridge, London, SW1X 7LA"
  ],
  "search_inputs": [
    "London",
    "SW1A 1AA"
  ],
  "branch_inputs": [
    "1941"
  ],
  "postcode_inputs": [
    "SW1A 1AA"
  ]
}' |
apify call one-api/rightmove-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,one-api/rightmove-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6VIJ2UZKKtsJUG1to/builds/23HuhXL0qaVfRykAh/openapi.json
