# Scrape Luxury Homes Over $1M on Redfin

**Use case:** 

Pull Redfin for-sale homes above a price floor with price, beds, baths, sqft, $/sqft, lot size and year built for any city. No login.

## Input

```json
{
  "listingType": "for_sale",
  "searchUrls": [
    "https://www.redfin.com/city/30794/TX/Dallas"
  ],
  "minPrice": 1000000,
  "minBeds": 4,
  "propertyTypes": [],
  "soldWithinDays": "90",
  "sort": "price-high-low",
  "includePropertyDetails": true,
  "maxResults": 200,
  "maxResultsPerSearch": 350,
  "monitorMode": false,
  "monitorStoreName": "redfin-monitor",
  "maxConcurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "fullAddress": {
    "label": "Address"
  },
  "price": {
    "label": "Price"
  },
  "beds": {
    "label": "Beds"
  },
  "baths": {
    "label": "Baths"
  },
  "sqFt": {
    "label": "Sqft"
  },
  "pricePerSqFt": {
    "label": "$/sqft"
  },
  "propertyType": {
    "label": "Type"
  },
  "mlsStatus": {
    "label": "Status"
  },
  "yearBuilt": {
    "label": "Year"
  },
  "daysOnMarket": {
    "label": "DOM"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zip": {
    "label": "ZIP"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Redfin Scraper - Listings, Sold Comps, Estimates & Leads](https://apify.com/scrapesage/redfin-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/redfin-scraper) to learn more, explore other use cases, and run it yourself.