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.

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

Node.js

Python

curl

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4const client = new ApifyClient({
5    token: '<YOUR_API_TOKEN>',
6});
7
8// Prepare Actor input
9const input = {
10    "startUrls": [
11        {
12            "url": "https://www.zillow.com/homedetails/17-Zelma-Dr-Greenville-SC-29617/11026031_zpid/"
13        },
14        {
15            "url": "https://www.zillow.com/apartments/san-antonio-tx/westpond/5XkVjF/"
16        },
17        {
18            "url": "https://www.zillow.com/community/greens-at-indian-river-preserve/39987_plid/"
19        },
20        {
21            "url": "https://www.zillow.com/b/Cashiers-NC/35.09787,-83.080475_ll/"
22        },
23        {
24            "url": "https://www.zillow.com/community/greens-at-indian-river-preserve/2072679238_zpid/"
25        },
26        {
27            "url": "https://www.zillow.com/b/2202-sandlewood-cv-san-antonio-tx-C2tftd/"
28        }
29    ],
30    "addresses": [
31        "18 Zelma Dr, Greenville, SC 29617"
32    ]
33};
34
35(async () => {
36    // Run the Actor and wait for it to finish
37    const run = await client.actor("maxcopell/zillow-detail-scraper").call(input);
38
39    // Fetch and print Actor results from the run's dataset (if any)
40    console.log('Results from dataset');
41    console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
42    const { items } = await client.dataset(run.defaultDatasetId).listItems();
43    items.forEach((item) => {
44        console.dir(item);
45    });
46})();
47
48// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs
Developer
Maintained by Apify
Actor metrics
  • 59 monthly users
  • 99.8% runs succeeded
  • 8.3 days response time
  • Created in Jun 2023
  • Modified 18 days ago
Categories