# San Francisco Homes For Sale Data

**Use case:** 

Extract listings of homes for sale in San Francisco, including price, beds, baths, square footage, and more, in real-time from Redfin.

## Input

```json
{
  "searchLocations": [
    "Austin, TX",
    "Miami, FL"
  ],
  "propertyTypes": [
    "house",
    "condo",
    "townhouse",
    "multifamily",
    "land",
    "other"
  ],
  "startUrls": [
    {
      "url": "https://www.redfin.com/city/17151/CA/San-Francisco"
    }
  ],
  "maxItems": 80,
  "maxConcurrency": 5,
  "maxRequestRetries": 3,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "address": {
    "label": "Address"
  },
  "city": {
    "label": "City"
  },
  "state": {
    "label": "State"
  },
  "zip": {
    "label": "ZIP"
  },
  "status": {
    "label": "Status"
  },
  "price": {
    "label": "Price ($)",
    "format": "number"
  },
  "pricePerSqFt": {
    "label": "$/sqft",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "sqFt": {
    "label": "Sq ft",
    "format": "number"
  },
  "lotSize": {
    "label": "Lot sq ft",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year",
    "format": "number"
  },
  "propertyType": {
    "label": "Type"
  },
  "hoaMonthly": {
    "label": "HOA/mo ($)",
    "format": "number"
  },
  "daysOnMarket": {
    "label": "Days on market",
    "format": "number"
  },
  "soldDate": {
    "label": "Sold date",
    "format": "datetime"
  },
  "mlsId": {
    "label": "MLS #"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "datetime"
  }
}
```

## About this Actor

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