# Find San Francisco Bay Area properties for sale

**Use case:** 

Collect Bay Area Craigslist real estate listings with contact details, photos and lead scores.

## Input

```json
{
  "mode": "search",
  "city": "sfbay",
  "category": "rea",
  "listingType": "all",
  "minPrice": 1000,
  "maxPrice": 5000,
  "minBedrooms": 1,
  "searchQuery": "furnished",
  "postalCode": "94102",
  "searchDistance": 10,
  "listingUrls": [
    "https://sfbay.craigslist.org/sfc/apa/d/san-francisco-bedroom-bath/123456789.html"
  ],
  "maxListings": 3,
  "includePhotos": true,
  "includeContactInfo": true,
  "includeLeadScore": true,
  "debugMode": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "number"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "number"
  },
  "sqft": {
    "label": "Sqft",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "housing_type": {
    "label": "Housing Type",
    "format": "text"
  },
  "posting_date": {
    "label": "Posting Date",
    "format": "date"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Craigslist Real Estate Scraper - FSBO Listings & Rentals](https://apify.com/benthepythondev/craigslist-real-estate-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/benthepythondev/craigslist-real-estate-scraper) to learn more, explore other use cases, and run it yourself.