# Scrape 4-Bedroom Homes for Sale on Redfin

**Use case:** 

Scrape 4-bedroom, 3-bath homes for sale on Redfin by ZIP. Get price, beds, baths, sqft, the Redfin Estimate, schools, address and photos for family homes.

## Input

```json
{
  "listingType": "for_sale",
  "searchUrls": [
    "https://www.redfin.com/zipcode/90210"
  ],
  "zipCodes": [
    "30097"
  ],
  "minBeds": 4,
  "minBaths": 3,
  "propertyTypes": [],
  "soldWithinDays": "90",
  "sort": "recommended",
  "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.