# Scrape Redfin San Diego Condos

**Use case:** 

Collect San Diego condo listings from Redfin with prices, bedrooms, bathrooms, square footage, listing status, and listing URLs.

## Input

```json
{
  "searchUrls": [
    "https://www.redfin.com/city/16904/CA/San-Diego"
  ],
  "maxListings": 75,
  "propertyTypes": [
    "condo"
  ],
  "listingStatus": [
    "active"
  ],
  "minPrice": 0,
  "maxPrice": 0,
  "minBeds": 0,
  "minBaths": 0,
  "minSqFt": 0,
  "sortOrder": "newest"
}
```

## Output

```json
{
  "propertyId": {
    "label": "Property ID",
    "format": "number"
  },
  "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": "Sqft",
    "format": "number"
  },
  "mlsStatus": {
    "label": "MLS Status",
    "format": "text"
  },
  "propertyTypeName": {
    "label": "Property Type",
    "format": "text"
  },
  "daysOnMarket": {
    "label": "Days on Market",
    "format": "number"
  },
  "yearBuilt": {
    "label": "Year Built",
    "format": "number"
  },
  "url": {
    "label": "Listing URL",
    "format": "link"
  }
}
```

## About this Actor

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