# Get Zillow Listings for Any ZIP Code

**Use case:** 

Enter a US ZIP code to get Zillow property listings with asking prices, price changes, days on Zillow, beds, baths, square footage, broker, and listing URLs. Export the results or use them through the API.

## Input

```json
{
  "zipCodes": [
    "90210"
  ],
  "maxItems": 25,
  "maxPagesPerZip": 2
}
```

## Output

```json
{
  "zpid": {
    "label": "Zpid",
    "format": "string"
  },
  "zipCode": {
    "label": "Zip code",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "priceDisplay": {
    "label": "Price display",
    "format": "string"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "area": {
    "label": "Area",
    "format": "number"
  },
  "homeType": {
    "label": "Home type",
    "format": "string"
  },
  "statusType": {
    "label": "Status type",
    "format": "string"
  },
  "daysOnZillow": {
    "label": "Days on zillow",
    "format": "number"
  },
  "priceChange": {
    "label": "Price change",
    "format": "number"
  },
  "brokerName": {
    "label": "Broker name",
    "format": "string"
  },
  "imageUrl": {
    "label": "Photo",
    "format": "string"
  },
  "detailUrl": {
    "label": "Listing",
    "format": "string"
  },
  "zipTotalResultCount": {
    "label": "Zip total result count",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow ZIP Code Scraper – Prices & Inventory](https://apify.com/lukehunter/zillow-zip-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/lukehunter/zillow-zip-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/lukehunter/zillow-zip-scraper.md

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`).
