# Scrape luxury homes for sale over $1M

**Use case:** 

Filter for-sale listings above $1M with full specs and agent contacts. Built for luxury agents and high-end market analysis.

## Input

```json
{
  "zipCodes": [
    "10001",
    "90210"
  ],
  "startUrls": [
    {
      "url": "https://www.zillow.com/los-angeles-ca/"
    }
  ],
  "listingType": "for_sale",
  "includeSingleFamily": true,
  "includeCondo": true,
  "includeTownhouse": true,
  "includeMultiFamily": true,
  "includeApartment": true,
  "includeManufactured": false,
  "includeLand": false,
  "dataDepth": "detail",
  "maxResults": 200,
  "minPrice": 1000000,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "imgSrc": {
    "label": "Photo",
    "format": "image"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipcode": {
    "label": "ZIP",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "zestimate": {
    "label": "Zestimate",
    "format": "number"
  },
  "zestimateStatus": {
    "label": "Zestimate status",
    "format": "text"
  },
  "rentZestimate": {
    "label": "Rent Zestimate",
    "format": "number"
  },
  "estimatedValuePPSF": {
    "label": "Est. value (comp)",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "number"
  },
  "lotSizeSqft": {
    "label": "Lot sqft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year built",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "monthlyHoaFee": {
    "label": "HOA/mo",
    "format": "number"
  },
  "taxAssessedValue": {
    "label": "Tax assessed",
    "format": "number"
  },
  "taxAssessedYear": {
    "label": "Tax year",
    "format": "number"
  },
  "daysOnMarket": {
    "label": "Days on market",
    "format": "number"
  },
  "listingStatus": {
    "label": "Status",
    "format": "text"
  },
  "hasCooling": {
    "label": "Cooling",
    "format": "boolean"
  },
  "hasHeating": {
    "label": "Heating",
    "format": "boolean"
  },
  "parkingSpaces": {
    "label": "Parking",
    "format": "number"
  },
  "agent.agentName": {
    "label": "Agent",
    "format": "text"
  },
  "agent.agentPhoneNumber": {
    "label": "Agent phone",
    "format": "text"
  },
  "agent.agentEmail": {
    "label": "Agent email",
    "format": "text"
  },
  "agent.brokerName": {
    "label": "Broker",
    "format": "text"
  },
  "agent.mlsName": {
    "label": "MLS",
    "format": "text"
  },
  "agent.mlsId": {
    "label": "MLS ID",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  }
}
```

## About this Actor

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