# Zillow Rental Listings Scraper

**Use case:** 

Scrape Zillow rentals in any city: monthly rent, beds, baths, square feet, address, photos and listing date. Just enter a location, pay per result.

## Input

```json
{
  "location": "Miami, FL",
  "locationType": "",
  "operation": "rent",
  "maxItems": 100,
  "minPrice": 0,
  "maxPrice": 0,
  "minBeds": 0,
  "maxBeds": 0,
  "minBaths": 0,
  "sortBy": "newest",
  "fetchDetails": false,
  "debugMode": false
}
```

## Output

```json
{
  "zpid": {
    "label": "Zpid"
  },
  "operation": {
    "label": "Operation"
  },
  "statusText": {
    "label": "Status text"
  },
  "price": {
    "label": "Price"
  },
  "currency": {
    "label": "Currency"
  },
  "beds": {
    "label": "Beds"
  },
  "baths": {
    "label": "Baths"
  },
  "livingArea": {
    "label": "Living area"
  },
  "homeType": {
    "label": "Home type"
  },
  "address.city": {
    "label": "City"
  },
  "address.state": {
    "label": "State"
  },
  "zestimate": {
    "label": "Zestimate"
  },
  "daysOnZillow": {
    "label": "Days on zillow"
  },
  "url": {
    "label": "Url"
  }
}
```

## About this Actor

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