# Redfin Sold Home Prices Scraper – Export to CSV

**Use case:** 

Scrape recently sold home prices and details (address, sold price, beds, baths, square footage) for any US city from Redfin. Export to JSON/CSV, no start fee.

## Input

```json
{
  "redfinUrls": [
    "https://www.redfin.com/city/30818/TX/Austin"
  ],
  "listingType": "sold",
  "sort": "redfin-recommended-asc",
  "maxListings": 50,
  "numHomesPerPage": 350
}
```

## Output

```json
{
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zip": {
    "label": "ZIP",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqft": {
    "label": "Sq Ft",
    "format": "number"
  },
  "pricePerSqFt": {
    "label": "$/sqft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year",
    "format": "number"
  },
  "propertyType": {
    "label": "Type",
    "format": "text"
  },
  "mlsStatus": {
    "label": "Status",
    "format": "text"
  },
  "daysOnMarket": {
    "label": "DOM",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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