Zillow Detail Scraper avatar
Zillow Detail Scraper
Try for free

Pay $3.00 for 1,000 results

View all Actors
Zillow Detail Scraper

Zillow Detail Scraper

maxcopell/zillow-detail-scraper
Try for free

Pay $3.00 for 1,000 results

Get details of Zillow properties from URLs. This Actor can be easily integrated with other Zillow Scrapers.

Do you want to learn more about this Actor?

Get a demo

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    "startUrls": [
9        { "url": "https://www.zillow.com/homedetails/17-Zelma-Dr-Greenville-SC-29617/11026031_zpid/" },
10        { "url": "https://www.zillow.com/apartments/san-antonio-tx/westpond/5XkVjF/" },
11        { "url": "https://www.zillow.com/community/greens-at-indian-river-preserve/39987_plid/" },
12        { "url": "https://www.zillow.com/b/Cashiers-NC/35.09787,-83.080475_ll/" },
13        { "url": "https://www.zillow.com/community/greens-at-indian-river-preserve/2072679238_zpid/" },
14        { "url": "https://www.zillow.com/b/2202-sandlewood-cv-san-antonio-tx-C2tftd/" },
15    ],
16    "addresses": ["18 Zelma Dr, Greenville, SC 29617"],
17}
18
19# Run the Actor and wait for it to finish
20run = client.actor("maxcopell/zillow-detail-scraper").call(run_input=run_input)
21
22# Fetch and print Actor results from the run's dataset (if there are any)
23print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
24for item in client.dataset(run["defaultDatasetId"]).iterate_items():
25    print(item)
26
27# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start
Developer
Maintained by Apify
Actor metrics
  • 101 monthly users
  • 20 stars
  • 98.6% runs succeeded
  • 4 days response time
  • Created in Jun 2023
  • Modified 3 days ago
Categories