All scrapers
Real estate
Redfin Scraper
redfin.com
100% Success rate
4.1s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
Redfin is a major US real-estate brokerage and portal, known for its own market data and estimates. ScrapeUnblocker renders its search pages as a buyer would see them and returns the price, bedrooms and location for each property, holding a clean 100% at around four seconds a page.
What you can extract
- Property type and listing title
- Price and Redfin estimate
- Beds, baths and square footage
- Address, city and listing agent
- Photos and listing URL
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.redfin.com%2Fcity%2F30749%2FNY%2FNew-York&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.redfin.com/city/30749/NY/New-York", "parsed_data": True},
)
print(resp.text)import { ScrapeUnblockerClient } from 'scrapeunblocker';
const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });
const results = await su.getPageSource({
url: 'https://www.redfin.com/city/30749/NY/New-York',
parsedData: true,
});
console.log(results); Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.