# Scrape Redfin Home Details from Property URLs

**Use case:** 

Scrape full home details from any Redfin property URLs. Get price, beds, baths, sqft, the Redfin Estimate, schools, tax records, photos and price history.

## Input

```json
{
  "listingType": "for_sale",
  "searchUrls": [
    "https://www.redfin.com/zipcode/90210"
  ],
  "propertyUrls": [
    "https://www.redfin.com/CA/Los-Angeles/123-Main-St-90001/home/12345678"
  ],
  "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.