# Zillow Scraper – Property Listings & Real Estate Data Extractor (`gauzy_penguin/zillow-scraper`) Actor

Scrape Zillow property listings and extract structured real estate data from Zillow search results including prices, addresses, property details, listing URLs, and images. Supports multiple search URLs, pagination for reliable data collection.

- **URL**: https://apify.com/gauzy\_penguin/zillow-scraper.md
- **Developed by:** [scrape anything](https://apify.com/gauzy_penguin) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 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.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Zillow Search Scraper — Extract Real Estate Listings from Zillow Search URLs

Extract structured property data from any Zillow search results page — homes for sale, homes for rent, price, beds, baths, square footage, location, and more — by simply pasting a Zillow search URL. No coding, no API key, no browser required.

**Keywords:** Zillow scraper, Zillow API alternative, real estate data extraction, property listings scraper, Zillow search scraper, extract Zillow data, Zillow web scraping, housing market data API, real estate lead generation tool.

***

### What This Actor Does

This actor takes one or more Zillow search URLs (the kind you get after searching by city, ZIP code, or map area on zillow.com) and returns a clean, structured dataset of every property listing in that search — ready to export as JSON, CSV, or Excel, or to push into your own database, spreadsheet, or app.

It's built for anyone who needs Zillow's listing data at scale without manually copying and pasting from the website:

- Real estate investors screening markets for deals
- Real estate agents and brokerages building comps or lead lists
- Data analysts and researchers studying housing market trends
- Developers building real estate apps, dashboards, or price-tracking tools
- Proptech companies needing structured MLS-adjacent data

### Key Features

- **Just paste a URL** — copy any Zillow search results URL (for sale, for rent, sold, any city or map area) and the actor handles the rest.
- **Handles large searches automatically** — searches spanning thousands of listings (e.g. an entire city or state) are processed in full, not capped at Zillow's usual on-page limit.
- **Reliable at scale** — built-in retry logic and proxy rotation keep long-running searches from getting interrupted by rate limits or blocks.
- **Clean, flat output** — no nested JSON to untangle. Every listing comes back as a simple row: address, price, beds, baths, square footage, status, listing URL, photo, and more.
- **Configurable result limits** — cap the number of results per search URL, or pull everything.
- **Multiple searches in one run** — queue up several Zillow search URLs (different cities, filters, or price ranges) and get them all in a single dataset.

### How to Use

1. Go to [zillow.com](https://www.zillow.com) and run a search (e.g. "homes for sale in Austin, TX" or draw a custom area on the map).
2. Copy the full URL from your browser's address bar once the results load.
3. Paste it into the **Zillow Search URLs** field in this actor's input.
4. (Optional) Set a **Results limit** if you only need a subset of listings.
5. Click **Start** and export your results as JSON, CSV, Excel, or connect via API.

#### Example Input

```json
{
  "searchUrls": [
    {
      "url": "https://www.zillow.com/ny/?searchQueryState=%7B%22pagination%22%3A%7B%7D%2C%22isMapVisible%22%3Atrue%2C%22mapBounds%22%3A%7B%22west%22%3A-96.281515109375%2C%22east%22%3A-60.37819479687499%2C%22south%22%3A33.79839295857889%2C%22north%22%3A48.83657701072271%7D%2C%22regionSelection%22%3A%5B%7B%22regionId%22%3A43%2C%22regionType%22%3A2%7D%5D%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex%22%7D%7D%2C%22isListVisible%22%3Atrue%2C%22mapZoom%22%3A5%7D"
    }
  ],
  "resultsLimit": 500
}
```

#### Example Output

```json
{
  "zpid": "29917292",
  "palsId": "9009_R1714800",
  "status": "House for sale",
  "status_type": "FOR_SALE",
  "main_image": "https://photos.zillowstatic.com/fp/3eada15f8520f7c2916840afde737bd3-p_e.jpg",
  "currency": "$",
  "price": 299900,
  "address": "9280 Mina Cemetery Rd, Sherman, NY 14781",
  "street": "9280 Mina Cemetery Rd",
  "city": "Sherman",
  "state": "NY",
  "zipcode": "14781",
  "latitude": 42.135014,
  "longitude": -79.66322,
  "beds": 3,
  "baths": 2.0,
  "area": 1456,
  "isZillowOwned": false,
  "isFeatured": false,
  "home_type": "SINGLE_FAMILY",
  "timeOnZillow": 420995000,
  "days_on_zillow": 4,
  "isNonOwnerOccupied": true,
  "isPremierBuilder": false,
  "tax_assessed_value": 207300.0,
  "lot_area_value": 11.0,
  "lot_area_unit": "acres",
  "is_showcase_listing": false,
  "has_3d_model": false,
  "has_video": false,
  "broker_name": "Listing by: ERA Team VP Real Estate",
  "detail_url": "https://www.zillow.com/homedetails/9280-Mina-Cemetery-Rd-Sherman-NY-14781/29917292_zpid/",
  "photo_count": 50,
  "is_paid_builder_new_construction": false,
  "images": [
    "https://photos.zillowstatic.com/fp/3eada15f8520f7c2916840afde737bd3-p_e.jpg",
    "https://photos.zillowstatic.com/fp/aa4590a8528597182575386b6787496e-p_e.jpg",
    "https://photos.zillowstatic.com/fp/3478fa8868c3299871eac86ef92c0134-p_e.jpg",
    "https://photos.zillowstatic.com/fp/3f3491f3452cd78e420d11756ba0790e-p_e.jpg",
    "https://photos.zillowstatic.com/fp/99874dd01509bb6ad97d900a22a53727-p_e.jpg",
    "https://photos.zillowstatic.com/fp/603251800e1dbaa4bc30457770700678-p_e.jpg",
    "https://photos.zillowstatic.com/fp/9b938094dfd55b166d86f994f9f3c3f5-p_e.jpg"
  ]
}
```

### Input Parameters

| Parameter      | Type    | Required | Description                                                                 |
|----------------|---------|----------|-------------------------------------------------------------------------------|
| `searchUrls`   | Array   | Yes      | One or more Zillow search result URLs to scrape.                             |
| `resultsLimit` | Integer | No       | Maximum number of listings to return per search URL. Leave empty for all results. |

### Frequently Asked Questions

**Does this actor need a Zillow account or API key?**
No. It works directly from a public Zillow search URL — no login or API credentials required.

**How many listings can it return?**
As many as exist in your search — including searches that would normally return more results than Zillow shows on a single page. Set `resultsLimit` if you only need a sample.

**Can I search multiple cities or filters at once?**
Yes. Add multiple URLs to `searchUrls` and each one is scraped and included in the same dataset.

**What's the difference between this and the Zillow API?**
Zillow does not offer a public API for search listings. This actor extracts the same data you'd see browsing zillow.com, structured for programmatic use.

**Can I get both for-sale and for-rent listings?**
Yes — just use the corresponding Zillow search URL for each (for sale, for rent, or sold/recently sold).

**How fresh is the data?**
Data reflects what's live on Zillow at the moment the actor runs.

### Use Cases

- Building a real estate comps database
- Monitoring price changes across neighborhoods over time
- Lead generation for real estate agents and investors
- Market research and housing trend analysis
- Populating a property search app or dashboard with live listings
- Academic or journalistic research into housing affordability

### Support

Found a bug or have a feature request? Open an issue or reach out via the Actor's Issues tab on Apify Store.

# Actor input Schema

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

URLs of Zillow search queries. Each URL must contain a searchQueryState parameter.

## `resultsLimit` (type: `integer`):

Maximum number of properties returned per search URL. Leave empty to return all results.

## Actor input object example

```json
{
  "searchUrls": [
    {
      "url": "https://www.zillow.com/ny/?searchQueryState=%7B%22pagination%22%3A%7B%7D%2C%22isMapVisible%22%3Atrue%2C%22mapBounds%22%3A%7B%22west%22%3A-83.9164028046875%2C%22east%22%3A-74.9405727265625%2C%22south%22%3A38.840630092967665%2C%22north%22%3A42.65907275177347%7D%2C%22regionSelection%22%3A%5B%7B%22regionId%22%3A43%2C%22regionType%22%3A2%7D%5D%2C%22filterState%22%3A%7B%22sort%22%3A%7B%22value%22%3A%22globalrelevanceex%22%7D%7D%2C%22isListVisible%22%3Atrue%2C%22mapZoom%22%3A7%7D"
    }
  ]
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("gauzy_penguin/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 = {}

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

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

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

```

## CLI example

```bash
echo '{}' |
apify call gauzy_penguin/zillow-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,gauzy_penguin/zillow-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

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