Skip to main content
AI Studio  add-on for Spider.
Real Estate
rightmove.co.uk Verified

Rightmove Scraper

Extract UK property listings, estate agent info, and sold price data from Rightmove. Built on spider-browser .

Get started Docs
target
rightmove.co.uk
success rate
99.9%
latency
~4ms
POST /fetch/rightmove.co.uk/
return_format
curl -X POST https://api.spider.cloud/fetch/rightmove.co.uk/ \
  -H "Authorization: Bearer $SPIDER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"return_format": "json"}'
200 OK · cache hit · response shape
{
  "url": "https://rightmove.co.uk/",
  "status": 200,
  "data": {
    "address": "string",
    "price": "string",
    "bedrooms": "string",
    "property_type": "string",
    "estate_agent": "string",
    "added_date": "string",
    "tenure": "string",
    "council_tax_band": "string"
  }
}
Quick start

Extract data in minutes.

Structured JSON from rightmove.co.uk with a single POST. AI-resolved selectors, cached on the first call.

rightmove-scraper.ts
import { SpiderBrowser } from "spider-browser";

const spider = new SpiderBrowser({
  apiKey: process.env.SPIDER_API_KEY!,
  stealth: 2,
});

await spider.connect();
const page = spider.page!;
await page.goto("https://www.rightmove.co.uk/house-prices/London.html");

const data = await page.extractFields({
  address: ".sold-prices-address",
  price: ".sold-prices-price",
  date: ".sold-prices-date",
  propertyType: ".sold-prices-type",
  beds: ".sold-prices-beds",
  tenure: ".sold-prices-tenure",
  image: { selector: ".sold-prices-photo img", attribute: "src" },
});

console.log(data);
await spider.close();
ready to run · spider-browser · TypeScript
Extraction

Fields you can pull.

AddressPriceBedroomsProperty typeEstate agentAdded dateTenureCouncil tax band
Maps

Geo-based extraction

Handle map-based search interfaces with scroll and zoom interaction.

Anti-Bot

Access protection

Bypass rate limiting and bot detection on rightmove.co.uk property pages.

Data

Property intelligence

Extract valuations, tax records, lot details, and neighborhood data.

Related

More Real Estate scrapers.

Start

Start scraping rightmove.co.uk.

Grab an API key and call the endpoint above. The first request resolves the config; every request after hits cache.