Rightmove Property Scraper avatar

Rightmove Property Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Rightmove Property Scraper

Rightmove Property Scraper

Scrape Rightmove — UK's largest property portal. Search properties for sale, to rent, or fetch any listing page by URL. Returns price, bedrooms, bathrooms, address, agent, images, and more.

Pricing

from $1.00 / 1,000 results

Rating

5.0

(27)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

26

Bookmarked

13

Total users

6

Monthly active users

5 days ago

Last modified

Share

Scrape property listings from Rightmove — the UK's largest property portal. Find properties for sale, to rent, or fetch any Rightmove search page by URL.

What You Can Scrape

  • Properties for sale — any UK city, town, or region
  • Rental properties — flats, houses, rooms to rent across the UK
  • Any Rightmove listing page — paste a URL and extract all listings

Output Fields

Each record contains:

FieldDescription
listingIdRightmove property ID
urlFull URL to the property listing
titleProperty summary / description snippet
addressDisplay address (e.g. "Cart Lane, London, E4")
pricePrice as integer (GBP or per-month for rentals)
priceTextFormatted price string (e.g. "£580,000")
currencyCurrency code ("GBP")
priceFrequencyPrice period for rentals (e.g. "monthly")
bedroomsNumber of bedrooms
bathroomsNumber of bathrooms
propertyTypeProperty subtype (e.g. "Apartment", "Detached")
tenureTenure (e.g. "Leasehold", "Share Of Freehold")
displaySizeFloor area if available (e.g. "786 sq. ft.")
latitudeGeographic latitude
longitudeGeographic longitude
agentNameEstate agent / branch trading name
branchNameBranch display name
agentPhoneAgent contact telephone
agentUrlAgent branch page URL
imageUrlsArray of property image URLs (up to 15)
keyFeaturesBullet-point features from the listing
listedDateDate the listing first appeared on Rightmove
lastUpdatedDateDate of the most recent listing update
updateReasonWhy the listing was updated (e.g. "price_reduced")
addedOrReducedSummary of when added or price reduced
transactionType"buy" or "rent"
isPremiumListingWhether this is a premium listing
countryCodeCountry code ("GB")
scrapedAtISO 8601 timestamp of when the record was scraped

Input

ParameterTypeDescription
modeselectforSale (default), toRent, or byUrl
locationstringUK city or region name (e.g. London, Manchester)
startUrlsarrayRightmove search or listing URLs (mode=byUrl only)
propertyTypeselectFilter by property type (blank = any)
minPriceintegerMinimum price in GBP
maxPriceintegerMaximum price in GBP
minBedroomsintegerMinimum number of bedrooms
maxBedroomsintegerMaximum number of bedrooms
radiusselectSearch radius in miles (default: this area only)
sortByselectSort order: most recent, price high/low, etc.
includeSSTCbooleanInclude Sold STC / Let Agreed properties
newHomesOnlybooleanNew-build properties only
maxItemsintegerMax records to return (default: 50)

Example Inputs

Properties for sale in Manchester:

{
"mode": "forSale",
"location": "Manchester",
"maxItems": 50
}

Rentals in Leeds under £1,500/month:

{
"mode": "toRent",
"location": "Leeds",
"maxPrice": 1500,
"maxItems": 30
}

3+ bedroom detached houses in Bristol:

{
"mode": "forSale",
"location": "Bristol",
"propertyType": "detached",
"minBedrooms": 3,
"maxItems": 50
}

Fetch a specific search URL:

{
"mode": "byUrl",
"startUrls": ["https://www.rightmove.co.uk/property-for-sale/Birmingham.html?maxPrice=300000"],
"maxItems": 100
}

Use Cases

  • Property market research — track pricing trends across UK cities
  • Investment analysis — compare yields in different postcodes
  • Lead generation — find recently listed or price-reduced properties
  • Portfolio monitoring — track specific area markets over time
  • Data journalism — housing affordability analysis

Data Source

This actor scrapes Rightmove (rightmove.co.uk), the UK's largest property portal with over 900,000 properties listed at any time. Data is publicly accessible — no account or API key required.

FAQ

Which locations are supported? Any UK city, town, or region that Rightmove recognises by name. Examples: London, Manchester, Edinburgh, Cardiff, Belfast, Oxford, Cambridge, Yorkshire.

How many properties can I scrape? Rightmove paginates results in groups of 24. The actor will paginate through all pages up to your maxItems limit.

Does this scrape new-build developments? Yes — use the newHomesOnly flag to restrict to new builds, or leave it off to include all properties.

Can I filter by postcode? Use the byUrl mode with a Rightmove search URL that includes your postcode as the location.

What's the price format? Prices are returned as integers (GBP) in the price field, and as formatted strings in priceText. For rentals, the frequency (monthly/weekly) is in priceFrequency.