# Zillow Luxury Homes Scraper

**Use case:** 

Scrape luxury homes for sale on Zillow above $1M: price, beds, baths, square feet, Zestimate and photos. Search any city, pay per result.

## Input

```json
{
  "location": "Los Angeles, CA",
  "locationType": "",
  "operation": "buy",
  "maxItems": 100,
  "minPrice": 1000000,
  "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.