# Scrape Craigslist Furniture for Sale by City

**Use case:** 

Extract Craigslist furniture listings for any city with price, photos, location, post date and seller contact. Export used couches, tables and desks to CSV.

## Input

```json
{
  "sites": [
    "losangeles"
  ],
  "categories": [
    "furniture"
  ],
  "hasImage": false,
  "postedTodayOnly": false,
  "titleOnly": false,
  "searchNearby": false,
  "maxResultsPerSearch": 120,
  "maxResults": 200,
  "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.