# Zillow Scraper - $4/1000 Listings (`scrapeunblocker/zillow-scraper`) Actor

Scrape Zillow real-estate listings and search pages as structured JSON - price, beds, baths, area, address and details - straight through PerimeterX. Powered by ScrapeUnblocker.

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

## Pricing

from $4.00 / 1,000 listings

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/actors/running/actors-in-store.md#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 Real Estate Scraper

Scrape **Zillow real-estate listings** as clean, structured JSON - price, beds, baths, area, address, home type, Zestimate and rent estimate. For sale, for rent or recently sold, with automatic pagination and full filtering. No Zillow API key.

Powered by [ScrapeUnblocker](https://scrapeunblocker.com)'s anti-bot bypass - no proxies or CAPTCHA setup.

### What you get per listing

- **Price** (parsed number + text) and currency
- **Beds**, **baths** and **living area** (sqft), plus lot size
- Full **address**: street, city, state, ZIP - and latitude/longitude
- **Home type** (single family, condo, townhouse, ...) and **listing status**
- **Zestimate**, **rent Zestimate** and tax-assessed value
- **Days on Zillow**, broker name and a clean listing **URL**

### Features

- **For sale, for rent or sold** - one `status` switch.
- **Automatic pagination** - set `max_results` and the scraper pages through Zillow until it collects that many.
- **Full filtering** - price range, minimum beds, minimum baths and home type (houses, condos, townhomes, multi-family, apartments, manufactured, lots/land).
- **Sorting** - newest, price low-to-high, price high-to-low or most relevant.
- **Any US market** - a city and state (`Austin, TX`) or a ZIP code.

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `location` | string | **required** | City/state or ZIP, e.g. `Austin, TX`. |
| `status` | select | For sale | `for_sale`, `for_rent` or `sold`. |
| `max_results` | integer | 82 | How many listings to collect (~41 per page). |
| `sort` | select | Newest | `newest`, `price_asc`, `price_desc`, `relevant`. |
| `home_type` | select | Any | houses, condos, townhomes, multi\_family, apartments, manufactured, lots\_land. |
| `min_price` / `max_price` | integer | - | Price (or monthly rent) range. |
| `beds` / `baths` | integer | - | Minimum bedrooms / bathrooms. |
| `proxy_country` | string | - | Exit-IP country (ISO-2), or blank for a US exit. |

### Example output (one dataset item)

```json
{
  "zpid": "29478686",
  "price": 875000,
  "priceText": "$875,000",
  "beds": 4,
  "baths": 3,
  "area": 2340,
  "homeType": "SINGLE_FAMILY",
  "status": "FOR_SALE",
  "address": "208 Lessin Ln, Austin, TX 78704",
  "city": "Austin",
  "state": "TX",
  "zipcode": "78704",
  "latitude": 30.226673,
  "longitude": -97.76352,
  "zestimate": 856600,
  "rentZestimate": 4809,
  "daysOnZillow": 41,
  "url": "https://www.zillow.com/homedetails/.../29478686_zpid/"
}
```

### Use cases

- **Market research** - price, inventory and days-on-market across cities or ZIPs.
- **Deal sourcing** - filter by price, beds and type and pull matching listings automatically.
- **Rent comps** - for\_rent listings with rent Zestimates for a neighbourhood.
- **Valuation feeds** - Zestimate and tax-assessed value for a set of homes.

### Pricing

$4 per 1,000 listings - cheaper than comparable Zillow scrapers, with the full listing detail and Zestimate included.

***

Built on [ScrapeUnblocker](https://scrapeunblocker.com). Questions? [developers.scrapeunblocker.com](https://developers.scrapeunblocker.com)

# Actor input Schema

## `location` (type: `string`):

City and state or ZIP to search, e.g. 'Austin, TX' or '78704'.

## `status` (type: `string`):

For sale, for rent or recently sold.

## `max_results` (type: `integer`):

How many listings to collect across pages (~41 per page).

## `sort` (type: `string`):

Ordering of the listings.

## `home_type` (type: `string`):

Property type. Leave as Any for all.

## `min_price` (type: `integer`):

Minimum price, or monthly rent for for-rent.

## `max_price` (type: `integer`):

Maximum price, or monthly rent for for-rent.

## `beds` (type: `integer`):

Minimum number of bedrooms.

## `baths` (type: `integer`):

Minimum number of bathrooms.

## `proxy_country` (type: `string`):

Exit-IP country (ISO-2). Leave blank for a US exit.

## Actor input object example

```json
{
  "location": "Austin, TX",
  "status": "for_sale",
  "max_results": 82,
  "sort": "newest",
  "home_type": ""
}
```

# Actor output Schema

## `items` (type: `string`):

Collected listings

# 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 = {
    "location": "Austin, TX"
};

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

# Run the Actor and wait for it to finish
run = client.actor("scrapeunblocker/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 '{
  "location": "Austin, TX"
}' |
apify call scrapeunblocker/zillow-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,scrapeunblocker/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/u5ckAlb40iVcSlfJn/builds/Hr3Gz0dPjqB6tK4Az/openapi.json
