Redfin Scraper avatar
Redfin Scraper
Try for free

3 days trial then $30.00/month - No credit card required now

View all Actors
Redfin Scraper

Redfin Scraper

epctex/redfin-scraper
Try for free

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.

The code examples below show how to run the Actor and get its results. To run the code, you need to have an Apify account. Replace <YOUR_API_TOKEN> in the code with your API token, which you can find under Settings > Integrations in Apify Console. Learn more

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4client = ApifyClient("<YOUR_API_TOKEN>")
5
6# Prepare the Actor input
7run_input = {
8    "search": "Los Angeles",
9    "searchMode": "SALE",
10    "startUrls": [
11        "https://www.redfin.com/CA/Encino/Legado-Encino/apartment/177407600",
12        "https://www.redfin.com/CA/Los-Angeles/1425-W-12th-St-90015/unit-250/home/6932257",
13        "https://www.redfin.com/CA/Encino/17846-Palora-St-91316/home/4287600",
14        "https://www.redfin.com/CA/West-Hills/7909-Valley-Flores-Dr-91304/home/3059994",
15        "https://www.redfin.com/CA/Encino/Legado-Encino/apartment/177407600",
16        "https://www.redfin.com/CA/Los-Angeles/Boulevard-on-Wilshire/apartment/17242451",
17        "https://www.redfin.com/CA/Pacific-Palisades/17326-Tramonto-Dr-90272/unit-403/home/183899165",
18        "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",
19        "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",
20    ],
21    "maxItems": 20,
22    "endPage": 1,
23    "customMapFunction": "(object) => { return {...object} }",
24    "proxy": { "useApifyProxy": True },
25}
26
27# Run the Actor and wait for it to finish
28run = client.actor("epctex/redfin-scraper").call(run_input=run_input)
29
30# Fetch and print Actor results from the run's dataset (if there are any)
31print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
32for item in client.dataset(run["defaultDatasetId"]).iterate_items():
33    print(item)
34
35# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Community
Actor metrics
  • 4 monthly users
  • 1 star
  • 100.0% runs succeeded
  • Created in May 2024
  • Modified 2 days ago