curl --request POST \
--url https://api.scrapeunblocker.com/realestate/rightmove \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/realestate/rightmove"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/realestate/rightmove', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape Rightmove property listings
Searches Rightmove (the UK’s largest property portal) for location and returns the listings as JSON: address, price (amount + currency + display + frequency), transactionType, bedrooms, bathrooms, propertyType, summary, coordinates, images, agent (name / branch / phone) and listing dates. Filter with channel (buy / rent), min_price/max_price, min_bedrooms/max_bedrooms and property_type, sort with sort, and collect up to max_results across pages.
curl --request POST \
--url https://api.scrapeunblocker.com/realestate/rightmove \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/realestate/rightmove"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/realestate/rightmove', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
UK place name, e.g. 'London', 'Manchester', 'Milton Keynes'.
buy (for sale) or rent (to rent).
Minimum price (GBP).
x >= 0Maximum price (GBP).
x >= 0Minimum bedrooms.
x >= 0Maximum bedrooms.
x >= 0Rightmove property types, comma-separated, e.g. 'flat,detached'.
Ordering: relevance, newest, price_asc, price_desc, oldest.
How many listings to collect across pages (~24 per page, max 1008).
1 <= x <= 10081-based results page to start from.
1 <= x <= 42Exit-IP country (ISO-2). Leave blank for a smart exit.
Response
JSON with a properties array plus totals.

