# Zillow Bulk Scraper Pro (`hello.datawizards/zillow-bulk-scraper-pro`) Actor

Zillow‑Bulk‑Scraper‑Pro is an Apify Actor that scrapes unlimited Zillow property listings by location, price range, and item limit. It returns structured JSON with key details—price, status, home features, images, tax & price history. Supports CSV export, custom filters, pagination via Apify Proxy.

- **URL**: https://apify.com/hello.datawizards/zillow-bulk-scraper-pro.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** Real estate, Lead generation, Automation
- **Stats:** 16 total users, 2 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Zillow-Bulk-Scraper-Pro

A powerful Apify Actor for searching and extracting bulk Zillow property listings. Easily scrape unlimited Zillow data—prices, status, home details, and more—without restrictions.

> **Note:** To avoid IP blocking, please enable the Apify Proxy in your run configuration.

***

### 🔍 Short Description

This actor performs a Zillow search based on your custom parameters (location, price range, item limit, etc.) and returns a structured JSON array of property listings, including key details like price, status, address, geographic coordinates, home features, images, tax history, and more.

***

### 🚀 How It Works

1. **Rent & Run**
   Deploy the actor on Apify. You’ll receive a 2‑hour free trial to test and validate your search.

2. **Provide Input**
   Configure the `INPUT` object (see schema below).

3. **Execute Search**
   The actor navigates Zillow, applies your filters, and scrapes results until the `itemLimit` is reached.

4. **Retrieve Output**
   Results are saved as JSON in the default Key–Value Store. You can also export to CSV or other formats.

***

### 🛠️ Input Schema

```jsonc
{
  "searchQuery": "Boston",           // (string) Location or keywords for Zillow search
  "minPrice": 0,                     // (number) Minimum price filter
  "maxPrice": 50000,                 // (number) Maximum price filter
  "priceStep": 50000,                // (number) Price interval step
  "itemLimit": 10,                   // (number) Maximum number of listings to return
  "proxyConfiguration": {
    "useApifyProxy": true            // (boolean) Enable Apify Proxy to avoid blocking
  }
}
```

***

### 📝 Sample Output

```json
[
  {
    "price": "$25,000",
    "HomeStatus": "ForSale",
    "Url": "https://www.zillow.com/homedetails/8200-Tejas-Trl-Amarillo-TX-79110/55663960_zpid/",
    "statusType": "FOR_SALE",
    "homeType": "SINGLE_FAMILY",
    "address": "8200 Tejas Trl, Amarillo, TX 79110",
    "latLong": {
      "latitude": 35.123413,
      "longitude": -101.8866
    },
    "beds": 3,
    "baths": 2,
    "zpid": "55663960",
    "zipcode": "79110",
    "livingArea": 1513,
    "daysOnZillow": 14,
    "Total_area": "None None",
    "image_list": [
      "https://photos.zillowstatic.com/fp/957f2f37163c148f0ffb6b6df7eff6b5-p_e.jpg",
      "https://photos.zillowstatic.com/fp/641f9818ee0a53c9c5d54c08feb64185-p_e.jpg"
    ],
    "taxAssessedValue": 233341,
    "description": "14 days on Zillow"
  }
]
```

***

### ⚙️ Usage

1. **Configure the Actor**

   - Go to your Apify console, find **Zillow-Bulk-Scraper-Pro** and click **Run**.
   - Paste your input JSON (as shown above) into the **INPUT** field.

2. **Enable Proxy**

   - In **Proxy configuration**, toggle **Use Apify Proxy** ON.

3. **Execute & Monitor**

   - Click **Run**.
   - Monitor logs for progress. The actor paginates through results until it reaches your `itemLimit`.

4. **Access Results**

   - Navigate to the **Key–Value Store** of this run.
   - Download `default` (JSON) or choose **CSV**, **XML**, etc.

***

### 🙋 Support

For bug reports or custom feature requests, please contact:

📧 <hello.datawizard@gmail.com>
🔗 [LinkedIn – Data Wizards](https://linkedin.com/in/data-wizards-aa8080342)

***Tip:*** Include the actor’s run ID and your input JSON in the email subject for faster support.

***

Thank you for using **Zillow-Bulk-Scraper-Pro**! 🏡

# Actor input Schema

## `Search_location` (type: `string`):

Enter your desire Search\_location

## `itemLimit` (type: `integer`):

Specifies the maximum number of items to process.

## `proxyConfiguration` (type: `object`):

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "Search_location": "Texas",
  "itemLimit": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "Search_location": "Texas",
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/zillow-bulk-scraper-pro").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "Search_location": "Texas",
    "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("hello.datawizards/zillow-bulk-scraper-pro").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "Search_location": "Texas",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call hello.datawizards/zillow-bulk-scraper-pro --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hello.datawizards/zillow-bulk-scraper-pro",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/daLcwitqgg8qbvta3/builds/Bo8b4qYEVChP5wWrO/openapi.json
