# Zillow Scraper (`scrapesmith/zillow-scraper`) Actor

🔥$ 0.60/1000 results🔥Scrape Zillow listings for any area — for sale, rent, or recently sold. 44 fields per listing including price, zestimate, beds, baths, photos, coordinates, and full property details. Search by URL, zip code, or city. Exhaustive mode finds 3-5x more results.

- **URL**: https://apify.com/scrapesmith/zillow-scraper.md
- **Developed by:** [Scrape Smith](https://apify.com/scrapesmith) (community)
- **Categories:** Real estate, Developer tools, Automation
- **Stats:** 17 total users, 11 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.60 / 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 a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js/docs.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/integrations/mcp.md).

If your project is in a different language, use 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 Real Estate Scraper 🏠 — Listings, Prices, Zestimates & Property Data

**Scrape Zillow listings for any area in the United States — for sale, for rent, or recently sold.** Get 44 structured fields per listing including price, Zestimate, beds, baths, square footage, lot size, year built, photos, coordinates, broker info, and full property details.

Search by **Zillow URL**, **ZIP code**, or **city/state**. Apply filters for price range, bedrooms, bathrooms, home type, and days on market. Turn on **exhaustive mode** to extract 3-5x more listings from dense areas.

No browser. No login. Just fast, structured real estate data ready for Excel, Google Sheets, BigQuery, or your own analytics tools.

---

### ⭐ Key features

- 🏡 **44 fields per listing** — price, Zestimate, rent Zestimate, beds, baths, sqft, lot size, year built, home type, days on Zillow, broker, coordinates, photos, and more
- 🔍 **Three search modes** — paste a Zillow URL, enter ZIP codes, or type city/state names
- 🏷️ **Full filters** — price range, bedrooms, bathrooms, home types, days on market
- 🏘️ **For sale, rent, or sold** — switch between listing types with one toggle
- 🚀 **Exhaustive mode** — runs multiple search strategies to find 3-5x more listings that single searches miss
- 📍 **Accurate geo-filtering** — results are 100% within your specified area, zero leakage
- 🔄 **Cross-run dedup** — tracks seen listings across runs so scheduled monitoring never pushes duplicates
- ⚡ **Fast & lightweight** — no browser needed, typically completes in seconds

---

### 🎯 Who it is for

| Audience | Use case |
|---|---|
| 🏠 Real estate investors | Find properties, track prices, monitor market trends |
| 📊 Market analysts | Build datasets across regions for pricing and inventory analysis |
| 🏢 Property managers | Monitor rental listings and competitor pricing |
| 🔍 Wholesalers | Find deals by filtering price, days on market, and foreclosures |
| 🤖 Developers | Feed listing data into dashboards, alerts, and CRM systems |
| 📈 Data scientists | Train models on real estate pricing, inventory, and market dynamics |

---

### 📊 Output — 44 fields per listing

| Category | Fields |
|---|---|
| **Identity** | zpid, detailUrl, address, addressStreet, addressCity, addressState, addressZipcode |
| **Pricing** | price, unformattedPrice, zestimate, rentZestimate, countryCurrency |
| **Property** | beds, baths, area, livingArea, lotSize, yearBuilt, homeType |
| **Market** | homeStatus, statusText, daysOnZillow, marketingStatusSimplifiedCd, rawHomeStatusCd |
| **Location** | latitude, longitude |
| **Media** | imgSrc, photos (full-resolution URLs), has3DModel, hasVideo, hasImage |
| **Agent** | brokerName, hasOpenHouse, openHouseDate |
| **Flags** | isFeatured, isFeaturedListing, isForeclosure, isZillowOwned, isShowcaseListing, isUndisclosedAddress, shouldShowZestimateAsPrice |
| **Meta** | contentType, flexFieldText, hdpData (full raw Zillow response) |

---

### 📥 Input

#### Search by URL
```json
{
  "searchUrls": ["https://www.zillow.com/new-york-ny/?searchQueryState=..."],
  "maxListings": 500
}
````

#### Search by ZIP code

```json
{
  "locations": ["90210", "10001", "30301"],
  "minPrice": 500000,
  "maxPrice": 2000000,
  "minBeds": 2,
  "maxListings": 1000
}
```

#### Search by city

```json
{
  "locations": ["Austin, TX", "Miami, FL"],
  "forRent": true,
  "maxListings": 500
}
```

#### Exhaustive mode (3-5x more results)

```json
{
  "locations": ["Beverly Hills, CA"],
  "exhaustive": true,
  "maxListings": 5000
}
```

| Parameter | Type | Default | Description |
|---|---|---|---|
| **searchUrls** | string\[] | — | Zillow search URLs (copy from browser after filtering) |
| **locations** | string\[] | — | ZIP codes or city/state names |
| maxListings | integer | 500 | Maximum unique listings to return |
| exhaustive | boolean | false | Run multiple strategies to find 3-5x more listings |
| minPrice / maxPrice | integer | — | Price range filter |
| minBeds / maxBeds | integer | — | Bedroom filter |
| minBaths | number | — | Minimum bathrooms (supports 1.5) |
| daysOnZillow | string | any | 7, 14, 30, or 90 days |
| homeTypes | string\[] | all | houses, condos, townhomes, apartments, lots, manufactured |
| forRent | boolean | false | Switch to rental listings |
| sold | boolean | false | Switch to recently sold listings |

***

### 🚀 Exhaustive mode

By default, Zillow limits search results to ~500-1000 per query. **Exhaustive mode** automatically runs the same search with different sort orders (newest, cheapest, most expensive, largest, etc.) and deduplicates the results. Each sort order surfaces different listings that the others miss.

- **Off:** 1 request → ~500-1000 listings (fast, cheap)
- **On:** 6 requests → ~2,000-3,000 unique listings (same area, same filters)

Your filters (price, beds, rent/sold) are always respected — exhaustive mode only varies the sort order to find more results within your criteria.

***

### 🌍 Supported listing types

- **For sale** (default) — active listings from agents and owners
- **For rent** — rental listings with monthly prices
- **Recently sold** — completed sales with sale prices

***

### 🔌 Automation & integrations

Connect to **Make, Zapier, n8n, Google Sheets, Airtable, BigQuery, Snowflake**, or any webhook. Schedule daily/weekly runs to monitor inventory, price changes, and new listings.

***

### ❓ FAQ

**How many listings can I get?** Default mode returns up to ~1,000 per area. Exhaustive mode finds 2,000-3,000+. For larger areas, split into multiple ZIP codes.

**Does it work for any US location?** Yes — any ZIP code, city, or Zillow search URL in the United States.

**Can I track changes over time?** Yes — schedule runs and the actor deduplicates across runs, so you only get new or updated listings.

**What export formats?** JSON, CSV, Excel, XML, and API access.

***

### 📈 Start scraping Zillow now

Get structured real estate data for any US market — prices, Zestimates, property details, and photos — ready for analysis, monitoring, and lead generation.

# Actor input Schema

## `searchUrls` (type: `array`):

Full Zillow search URLs with a searchQueryState query parameter. Copy-paste from your browser after filtering the map.

## `locations` (type: `array`):

ZIP codes (e.g. 10001) or city/state strings (e.g. Beverly Hills, CA).

## `maxListings` (type: `integer`):

Maximum unique listings to return across the entire run.

## `exhaustive` (type: `boolean`):

Run multiple search strategies to extract 3-5x more listings from each area. Uses more requests but finds results that single searches miss. Your filters still apply.

## `minPrice` (type: `integer`):

Minimum listing price.

## `maxPrice` (type: `integer`):

Maximum listing price.

## `minBeds` (type: `integer`):

Minimum number of bedrooms.

## `maxBeds` (type: `integer`):

Maximum number of bedrooms.

## `minBaths` (type: `number`):

Minimum number of bathrooms. Supports halves (e.g. 1.5).

## `daysOnZillow` (type: `string`):

Restrict to listings posted within the last N days.

## `homeTypes` (type: `array`):

Filter by property type.

## `forRent` (type: `boolean`):

Scrape rental listings instead of for-sale.

## `sold` (type: `boolean`):

Scrape recently-sold listings.

## Actor input object example

```json
{
  "locations": [
    "10001"
  ],
  "maxListings": 500,
  "exhaustive": false,
  "forRent": false,
  "sold": false
}
```

# 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 = {
    "locations": [
        "10001"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapesmith/zillow-scraper").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 = { "locations": ["10001"] }

# Run the Actor and wait for it to finish
run = client.actor("scrapesmith/zillow-scraper").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 '{
  "locations": [
    "10001"
  ]
}' |
apify call scrapesmith/zillow-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Zillow Scraper",
        "description": "🔥$ 0.60/1000 results🔥Scrape Zillow listings for any area — for sale, rent, or recently sold. 44 fields per listing including price, zestimate, beds, baths, photos, coordinates, and full property details. Search by URL, zip code, or city. Exhaustive mode finds 3-5x more results.",
        "version": "0.0",
        "x-build-id": "SSJqZfMamhPhbBTCc"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapesmith~zillow-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapesmith-zillow-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapesmith~zillow-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapesmith-zillow-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapesmith~zillow-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapesmith-zillow-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "searchUrls": {
                        "title": "Search URLs",
                        "type": "array",
                        "description": "Full Zillow search URLs with a searchQueryState query parameter. Copy-paste from your browser after filtering the map.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "ZIP codes (e.g. 10001) or city/state strings (e.g. Beverly Hills, CA).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxListings": {
                        "title": "Max listings",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum unique listings to return across the entire run.",
                        "default": 500
                    },
                    "exhaustive": {
                        "title": "Get exhaustive results",
                        "type": "boolean",
                        "description": "Run multiple search strategies to extract 3-5x more listings from each area. Uses more requests but finds results that single searches miss. Your filters still apply.",
                        "default": false
                    },
                    "minPrice": {
                        "title": "Min price (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum listing price."
                    },
                    "maxPrice": {
                        "title": "Max price (USD)",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum listing price."
                    },
                    "minBeds": {
                        "title": "Min bedrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum number of bedrooms."
                    },
                    "maxBeds": {
                        "title": "Max bedrooms",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum number of bedrooms."
                    },
                    "minBaths": {
                        "title": "Min bathrooms",
                        "minimum": 0,
                        "type": "number",
                        "description": "Minimum number of bathrooms. Supports halves (e.g. 1.5)."
                    },
                    "daysOnZillow": {
                        "title": "Days on Zillow",
                        "enum": [
                            "",
                            "7",
                            "14",
                            "30",
                            "90"
                        ],
                        "type": "string",
                        "description": "Restrict to listings posted within the last N days."
                    },
                    "homeTypes": {
                        "title": "Home types",
                        "uniqueItems": true,
                        "type": "array",
                        "description": "Filter by property type.",
                        "items": {
                            "type": "string",
                            "enum": [
                                "houses",
                                "condos",
                                "townhomes",
                                "apartments",
                                "lots",
                                "manufactured"
                            ],
                            "enumTitles": [
                                "Houses",
                                "Condos",
                                "Townhomes",
                                "Apartments",
                                "Lots/Land",
                                "Manufactured"
                            ]
                        }
                    },
                    "forRent": {
                        "title": "For rent",
                        "type": "boolean",
                        "description": "Scrape rental listings instead of for-sale.",
                        "default": false
                    },
                    "sold": {
                        "title": "Recently sold",
                        "type": "boolean",
                        "description": "Scrape recently-sold listings.",
                        "default": false
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
