# Find houses for sale on Craigslist by city

**Use case:** 

Scrape Craigslist real-estate-for-sale listings: title, asking price, bedrooms, bathrooms, sqft, neighborhood, photos and post date for any US city.

## Input

```json
{
  "sites": [
    "austin"
  ],
  "categories": [
    "real-estate-for-sale"
  ],
  "maxPrice": 600000,
  "hasImage": false,
  "postedTodayOnly": false,
  "titleOnly": false,
  "searchNearby": false,
  "maxResultsPerSearch": 120,
  "maxResults": 300,
  "includePostDetails": true,
  "deduplicatePostings": true,
  "monitorMode": false,
  "monitorStoreName": "craigslist-monitor",
  "maxConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "category": {
    "label": "Category"
  },
  "price": {
    "label": "Price"
  },
  "priceText": {
    "label": "Price text"
  },
  "bedrooms": {
    "label": "Beds"
  },
  "bathrooms": {
    "label": "Baths"
  },
  "sqft": {
    "label": "Sqft"
  },
  "site": {
    "label": "Site"
  },
  "neighborhood": {
    "label": "Area"
  },
  "postedAt": {
    "label": "Posted"
  },
  "imageCount": {
    "label": "Photos"
  },
  "leadScore": {
    "label": "Lead score"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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