# Zillow Data (`coder_zoro/zillow-data`) Actor

Zillow Data API provides real-time access to Zillow property listings, detailed home info, price history, tax records, high-resolution images, and transportation scores. Perfect for real estate apps, property analysis, market research, and investment dashboards.

- **URL**: https://apify.com/coder\_zoro/zillow-data.md
- **Developed by:** [Zoro](https://apify.com/coder_zoro) (community)
- **Categories:** Real estate, Developer tools
- **Stats:** 94 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$19.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

## 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.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.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/platform/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 Property Data Fetcher - Apify Actor

### 📋 Overview

This Apify Actor fetches property-related data from Zillow using various data types. It supports bulk processing of multiple properties through ZUIDs or URLs.

### 🚀 Features

- Fetch property listings
- Get property images
- Retrieve price and tax history
- Get transportation scores
- Search properties by URL
- Bulk processing support (multiple ZUIDs/URLs)

### 📊 Input Schema

#### Required Fields

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `data_type` | String (select) | ✅ Yes | Type of data to fetch |

#### Optional Fields

| Field | Type | Required | Description | Default |
|-------|------|----------|-------------|---------|
| `zuid_list` | Array of Strings | Conditional* | List of Zillow Unique IDs (one per line) | - |
| `url_list` | Array of Strings | Conditional* | List of Zillow page URLs (one per line) | - |
| `countOfPrice` | Integer | No | Number of price history records | 10 |
| `countOfTax` | Integer | No | Number of tax history records | 10 |

\* *Either `zuid_list` or `url_list` is required depending on the `data_type` selected.*

### 🔧 Data Types & Required Parameters

| Data Type | Description | Requires ZUID | Requires URL | Uses Price/Tax Count |
|-----------|-------------|---------------|--------------|----------------------|
| `propertyList` | Get list of properties from a search page | ❌ | ✅ | ❌ |
| `propertyImages` | Fetch all images for a property | ✅ | ✅ (optional) | ❌ |
| `priceAndtaxHistory` | Get price and tax history | ✅ | ✅ (optional) | ✅ |
| `transportScore` | Get transportation/walk score | ✅ | ❌ | ❌ |
| `searchByUrl` | Search properties by URL | ❌ | ✅ | ❌ |

### 📝 Input Examples

#### Example 1: Fetch Property Images (Single ZUID)

```json
{
  "data_type": "propertyImages",
  "zuid_list": [
    "20482366"
  ]
}
````

#### Example 2: Get Price and Tax History (Multiple ZUIDs)

```json
{
  "data_type": "priceAndtaxHistory",
  "zuid_list": [
    "20482366",
    "12345678",
    "87654321"
  ],
  "countOfPrice": 15,
  "countOfTax": 20
}
```

#### Example 3: Fetch Property List (Multiple URLs)

```json
{
  "data_type": "propertyList",
  "url_list": [
    "https://www.zillow.com/dunwoody-ga-30360/",
    "https://www.zillow.com/santa-monica-ca/"
  ]
}
```

#### Example 4: Get Transportation Score

```json
{
  "data_type": "transportScore",
  "zuid_list": [
    "20482366",
    "98765432"
  ]
}
```

#### Example 5: Search by URL

```json
{
  "data_type": "searchByUrl",
  "url_list": [
    "https://www.zillow.com/homes/for_sale/"
  ]
}
```

### 📤 Output Examples

#### Property Images Output

```json
{
  "zuid": "20482366",
  "images": [
    {
      "url": "https://photos.zillowstatic.com/image1.jpg",
      "caption": "Living Room"
    },
    {
      "url": "https://photos.zillowstatic.com/image2.jpg",
      "caption": "Kitchen"
    }
  ],
  "totalImages": 25
}
```

#### Price and Tax History Output

```json
{
  "zuid": "20482366",
  "priceHistory": [
    {
      "date": "2024-01-15",
      "price": 450000,
      "event": "Sold"
    },
    {
      "date": "2023-12-01",
      "price": 445000,
      "event": "Listed"
    }
  ],
  "taxHistory": [
    {
      "year": 2024,
      "taxAmount": 5400,
      "assessedValue": 440000
    },
    {
      "year": 2023,
      "taxAmount": 5200,
      "assessedValue": 425000
    }
  ]
}
```

#### Transport Score Output

```json
{
  "zuid": "20482366",
  "walkScore": 78,
  "transitScore": 65,
  "bikeScore": 72,
  "description": "Very Walkable"
}
```

#### Property List Output

```json
{
  "url": "https://www.zillow.com/dunwoody-ga-30360/",
  "properties": [
    {
      "zuid": "20482366",
      "address": "123 Main St, Dunwoody, GA 30360",
      "price": 450000,
      "beds": 3,
      "baths": 2,
      "sqft": 1850
    },
    {
      "zuid": "20482367",
      "address": "456 Oak Ave, Dunwoody, GA 30360",
      "price": 525000,
      "beds": 4,
      "baths": 3,
      "sqft": 2200
    }
  ],
  "totalResults": 45
}
```

### 💡 Usage Tips

#### Bulk Processing

- Enter multiple ZUIDs or URLs, **one per line** in the input fields
- Each entry will be processed separately
- Results will be aggregated in the output

#### Performance Optimization

- Use `countOfPrice` and `countOfTax` to limit the amount of historical data fetched
- Smaller counts = faster processing
- Default values (10 each) work well for most use cases

#### Common Use Cases

**1. Property Research**

- Use `propertyList` to discover properties in an area
- Then use `propertyImages` and `priceAndtaxHistory` for detailed information

**2. Market Analysis**

- Use `priceAndtaxHistory` with higher counts (20-50) for trend analysis
- Combine with `transportScore` for location quality assessment

**3. Bulk Property Data**

- Input multiple ZUIDs in `zuid_list` for batch processing
- Useful for portfolio analysis or comparative market analysis

### ⚠️ Error Handling

The actor returns error messages in the following format:

```json
{
  "error": "Invalid data type"
}
```

Common errors:

- **Missing required parameter**: Ensure ZUID or URL is provided based on data type
- **Invalid ZUID**: Check that the ZUID is a valid Zillow property ID
- **Invalid URL**: Ensure the URL is a valid Zillow page URL

### 🔗 Field Mapping Guide

| You Want To... | Use data\_type | Provide | Optional Parameters |
|----------------|---------------|---------|---------------------|
| Browse listings in an area | `propertyList` | `url_list` | - |
| See photos of properties | `propertyImages` | `zuid_list` | - |
| Check price changes over time | `priceAndtaxHistory` | `zuid_list` | `countOfPrice`, `countOfTax` |
| Evaluate walkability | `transportScore` | `zuid_list` | - |
| Search specific URL results | `searchByUrl` | `url_list` | - |

# Actor input Schema

## `data_type` (type: `string`):

Specify which data to fetch.

## `zuid_list` (type: `array`):

Paste ZUIDs, one per line. Each line will be processed as a separate property.

## `countOfPrice` (type: `integer`):

Number of price history records to retrieve (for priceAndtaxHistory).

## `countOfTax` (type: `integer`):

Number of tax history records to retrieve (for priceAndtaxHistory).

## Actor input object example

```json
{
  "data_type": "propertyList",
  "zuid_list": [
    "20482366",
    "12345678"
  ],
  "countOfPrice": 10,
  "countOfTax": 10
}
```

# Actor output Schema

## `overview` (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 = {
    "data_type": "propertyList",
    "zuid_list": [
        "20482366",
        "12345678"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("coder_zoro/zillow-data").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 = {
    "data_type": "propertyList",
    "zuid_list": [
        "20482366",
        "12345678",
    ],
}

# Run the Actor and wait for it to finish
run = client.actor("coder_zoro/zillow-data").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 '{
  "data_type": "propertyList",
  "zuid_list": [
    "20482366",
    "12345678"
  ]
}' |
apify call coder_zoro/zillow-data --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Zillow Data",
        "description": "Zillow Data API provides real-time access to Zillow property listings, detailed home info, price history, tax records, high-resolution images, and transportation scores. Perfect for real estate apps, property analysis, market research, and investment dashboards.",
        "version": "0.0",
        "x-build-id": "a2wQRkxrLatrj0ual"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/coder_zoro~zillow-data/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-coder_zoro-zillow-data",
                "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/coder_zoro~zillow-data/runs": {
            "post": {
                "operationId": "runs-sync-coder_zoro-zillow-data",
                "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/coder_zoro~zillow-data/run-sync": {
            "post": {
                "operationId": "run-sync-coder_zoro-zillow-data",
                "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",
                "required": [
                    "data_type"
                ],
                "properties": {
                    "data_type": {
                        "title": "Data Type",
                        "enum": [
                            "propertyImages",
                            "priceAndtaxHistory",
                            "transportScore",
                            "propertyList"
                        ],
                        "type": "string",
                        "description": "Specify which data to fetch."
                    },
                    "zuid_list": {
                        "title": "ZPID(s)",
                        "type": "array",
                        "description": "Paste ZUIDs, one per line. Each line will be processed as a separate property.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "countOfPrice": {
                        "title": "Count of Price Entries",
                        "type": "integer",
                        "description": "Number of price history records to retrieve (for priceAndtaxHistory).",
                        "default": 10
                    },
                    "countOfTax": {
                        "title": "Count of Tax Entries",
                        "type": "integer",
                        "description": "Number of tax history records to retrieve (for priceAndtaxHistory).",
                        "default": 10
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
