# Zillow Rental Listings Scraper and Lead Monitor

**Use case:** 

Scrape Zillow rental listings by city, price, beds, and property type for real estate lead workflows.

## Input

```json
{
  "searchUrls": [
    "https://www.zillow.com/san-francisco-ca/rentals/"
  ],
  "listingType": "for_rent",
  "maxPrice": 5000,
  "minBeds": 2,
  "propertyType": "apartment",
  "maxListings": 100,
  "maxRequestRetries": 1
}
```

## Output

```json
{
  "zpid": {
    "label": "ZPID"
  },
  "address": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zipcode": {
    "label": "ZIP"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "homeStatus": {
    "label": "Status"
  },
  "propertyType": {
    "label": "Type"
  },
  "bedrooms": {
    "label": "Beds",
    "format": "number"
  },
  "bathrooms": {
    "label": "Baths",
    "format": "number"
  },
  "livingArea": {
    "label": "SqFt",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Built",
    "format": "number"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Zillow Scraper](https://apify.com/automation-lab/zillow-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/zillow-scraper) to learn more, explore other use cases, and run it yourself.