# Zillow For Sale Price Monitor

**Use case:** 

Monitor Zillow for-sale listings sorted by most recent change to catch price drops and new inventory daily. Price, status, Zestimate, and days on Zillow.

## Input

```json
{
  "query": "Chicago, IL",
  "homeStatuses": "forSale",
  "sortOrder": "recentlyChanged",
  "maxResults": 300,
  "maxConcurrency": 10,
  "cacheTtlSecs": 3600,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "UNBLOCKER"
    ]
  }
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID"
  },
  "address": {
    "label": "Address"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "lotSize": {
    "label": "Lot (sqft)",
    "format": "number"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "rentZestimate": {
    "label": "Rent Zestimate",
    "format": "number"
  },
  "latitude": {
    "label": "Lat",
    "format": "number"
  },
  "longitude": {
    "label": "Lng",
    "format": "number"
  },
  "listingStatus": {
    "label": "Status"
  },
  "homeType": {
    "label": "Type"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Scraper [$0.001💰] | Listings | Leads | Rentals | Sold](https://apify.com/ahmed_jasarevic/zillow-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ahmed_jasarevic/zillow-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/ahmed_jasarevic/zillow-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`).
