# Rightmove Scraper — UK Sale & Rent Listings, Prices, Agents (`ocrad/rightmove-property-scraper`) Actor

Scrape Rightmove UK property listings from any search URL: price, address, beds/baths, agent, GPS, key features, full description and photos. Search + detail modes, no login. Export JSON/CSV/Excel.

- **URL**: https://apify.com/ocrad/rightmove-property-scraper.md
- **Developed by:** [Ocrad](https://apify.com/ocrad) (community)
- **Categories:** Real estate, Automation, AI
- **Stats:** 1 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 listing records

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

This Actor scrapes **property listings** from [Rightmove.co.uk](https://www.rightmove.co.uk) — the UK's largest property portal with over 60,000 active listings at any time.

With this Actor, you can:

- **Get Basic Listing Data**: Extract price, address, beds/baths, size, property type, tenure, agent name, and thumbnail for every card on the results page.
- **Access Deep Property Details**: Enable `detailedInfo` to visit each listing page and extract the full description, room details, nearest stations, leasehold years, all photos, and direct contact info.
- **Scrape Any Search**: Pass any Rightmove search URL — location, price range, property type, buy or rent — the Actor respects all filters.

***

#### **📝 Example Output**

**Basic record** (`detailedInfo: false`):

```json
{
  "url": "https://www.rightmove.co.uk/properties/173742266",
  "address": "Queens Head Street, London, N1",
  "price": "£325,000",
  "priceAmount": 325000,
  "currency": "GBP",
  "bedrooms": 1,
  "bathrooms": 1,
  "size": "348 sq. ft.",
  "propertyType": "Apartment",
  "propertyTypeDescription": "1 bedroom apartment for sale",
  "tenure": "LEASEHOLD",
  "imageUrl": "https://media.rightmove.co.uk/dir/crop/10:9-16:9/property-photo/b72cb1a53/173742266/b72cb1a53ba530fd54f3a25fa52c8a07_max_476x317.jpeg",
  "agentName": "Cluttons, Islington - Sales",
  "agentPhone": "020 3873 8411",
  "addedOrReduced": "Reduced on 29/04/2026",
  "listingUpdateReason": "price_reduced",
  "keyFeatures": ["Close to Angel Station (0.6km)", "Period conversion", "Chain free"],
  "tags": [],
  "latitude": 51.536628,
  "longitude": -0.099585,
  "summary": "Ideal for a first time buyer or for use as a Pied-à-terre...",
  "firstListedDate": "2026-03-26T13:51:10Z",
  "scrapedAt": "2026-05-05T20:00:00.000Z"
}
```

**Detailed record** (`detailedInfo: true`, additional fields):

```json
{
  "pricePerSqFt": "£723.35 per sq ft",
  "sizeSqFt": 788,
  "sizeSqM": 73,
  "leaseholdYears": 250,
  "postcode": "SE15 1BW",
  "agentAddress": "201 Commercial Way, Peckham, London, SE15 1BW",
  "contactPhone": "020 4572 7697",
  "nearestStations": [
    { "name": "Queens Road Peckham Station", "distanceMiles": 0.49, "types": ["NATIONAL_TRAIN", "LONDON_OVERGROUND"] }
  ],
  "images": ["https://media.rightmove.co.uk/property-photo/...jpeg"],
  "rooms": [
    { "name": "Living Room", "dimensions": "4.57 x 3.35m", "description": "Karndean flooring" }
  ]
}
```

***

#### ⚙️ **Configuration**

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `url` | String | *(required)* | Rightmove search results URL with filters pre-applied. |
| `maxPages` | Integer | `1` | Number of pages to scrape. Each page contains 24 listings. |
| `detailedInfo` | Boolean | `false` | Visit each listing's detail page for full data (slower). |

##### Example Input

```json
{
  "url": "https://www.rightmove.co.uk/property-for-sale/find.html?locationIdentifier=REGION%5E87490&sortType=2&numberOfPropertiesPerPage=24",
  "maxPages": 3,
  "detailedInfo": false
}
```

##### Getting your search URL

1. Go to [rightmove.co.uk](https://www.rightmove.co.uk)
2. Search for a location and apply your filters (price range, beds, property type, buy/rent)
3. Copy the full URL from your browser — it will contain `locationIdentifier=` and other filter params
4. Paste it as the `url` input

***

#### 💬 **Support and Feedback**

Need help or have suggestions? Reach out via Apify support or leave feedback on the Actor page.

***

#### **Is it legal to scrape Rightmove data?**

It is legal to scrape publicly available data such as property prices, addresses, and listing details. You should be aware that results may contain personal information (agent names, phone numbers). Personal data is protected by GDPR and other regulations. Only scrape personal data if you have a legitimate reason to do so.

# Actor input Schema

## `url` (type: `string`):

A Rightmove property search URL. Example: https://www.rightmove.co.uk/property-for-sale/find.html?locationIdentifier=REGION%5E87490\&sortType=2

## `maxPages` (type: `integer`):

Number of result pages to scrape. Each page contains 24 listings.

## `detailedInfo` (type: `boolean`):

Visit each listing's detail page for full description, room details, nearest stations, images, and contact info.

## Actor input object example

```json
{
  "url": "https://www.rightmove.co.uk/property-for-sale/find.html?locationIdentifier=REGION%5E87490&sortType=2&numberOfPropertiesPerPage=24",
  "maxPages": 1,
  "detailedInfo": false
}
```

# Actor output Schema

## `url` (type: `string`):

Property listing URL

## `address` (type: `string`):

Full address

## `price` (type: `string`):

Formatted price string

## `priceAmount` (type: `string`):

Numeric price in GBP

## `currency` (type: `string`):

Currency code

## `bedrooms` (type: `string`):

Number of bedrooms

## `bathrooms` (type: `string`):

Number of bathrooms

## `size` (type: `string`):

Property size

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

Type of property

## `tenure` (type: `string`):

Tenure (freehold/leasehold)

## `agentName` (type: `string`):

Estate agent name

## `addedOrReduced` (type: `string`):

Added or reduced status

## `listingUpdateReason` (type: `string`):

Reason for listing update

## `latitude` (type: `string`):

Latitude coordinate

## `longitude` (type: `string`):

Longitude coordinate

## `scrapedAt` (type: `string`):

ISO timestamp of scrape

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("ocrad/rightmove-property-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("ocrad/rightmove-property-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 '{}' |
apify call ocrad/rightmove-property-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ocrad/rightmove-property-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/moxfTVGCMpUnlumZA/builds/lH19K2qyu3qEye1kS/openapi.json
