Redfin Scraper
3 days trial then $30.00/month - No credit card required now
Redfin Scraper
3 days trial then $30.00/month - No credit card required now
Discover key insights using Redfin's comprehensive property listings. Explore detailed descriptions, images, features, property specifics, pricing information, neighborhood data, nearby educational institutions, and more across numerous properties.
You can access the Redfin Scraper programmatically from your own Python applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.
1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input = {
9 "search": "Los Angeles",
10 "searchMode": "SALE",
11 "startUrls": [
12 "https://www.redfin.com/CA/Encino/Legado-Encino/apartment/177407600",
13 "https://www.redfin.com/CA/Los-Angeles/1425-W-12th-St-90015/unit-250/home/6932257",
14 "https://www.redfin.com/CA/Encino/17846-Palora-St-91316/home/4287600",
15 "https://www.redfin.com/CA/West-Hills/7909-Valley-Flores-Dr-91304/home/3059994",
16 "https://www.redfin.com/CA/Encino/Legado-Encino/apartment/177407600",
17 "https://www.redfin.com/CA/Los-Angeles/Boulevard-on-Wilshire/apartment/17242451",
18 "https://www.redfin.com/CA/Pacific-Palisades/17326-Tramonto-Dr-90272/unit-403/home/183899165",
19 "https://www.redfin.com/city/11203/CA/Los-Angeles/filter/property-type=townhouse,min-price=900k,max-price=8M,min-beds=2,min-baths=1",
20 "https://www.redfin.com/city/11203/CA/Los-Angeles/apartments-for-rent/filter/property-type=house,min-price=500,max-price=4k,min-beds=0,min-baths=4",
21 ],
22 "maxItems": 20,
23 "endPage": 1,
24 "customMapFunction": "(object) => { return {...object} }",
25 "proxy": { "useApifyProxy": True },
26}
27
28# Run the Actor and wait for it to finish
29run = client.actor("epctex/redfin-scraper").call(run_input=run_input)
30
31# Fetch and print Actor results from the run's dataset (if there are any)
32print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
33for item in client.dataset(run["defaultDatasetId"]).iterate_items():
34 print(item)
35
36# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Redfin Scraper API in Python
The Apify API client for Python is the official library that allows you to use Redfin Scraper API in Python, providing convenience functions and automatic retries on errors.
Install the apify-client
pip install apify-client
Other API clients include:
Actor Metrics
6 monthly users
-
2 stars
94% runs succeeded
Created in May 2024
Modified 12 hours ago