# Craigslist Listings Scraper for Furniture

**Use case:** 

Scrape Craigslist furniture listings with prices, locations, URLs, and listing details for local market research.

## Input

```json
{
  "searchQueries": [
    "sofa",
    "dining table"
  ],
  "city": "sfbay",
  "category": "for_sale",
  "maxResults": 30,
  "includeDetails": true,
  "minPrice": 50,
  "maxPrice": 800,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "string"
  },
  "sqft": {
    "label": "Sqft",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "imageCount": {
    "label": "Image Count",
    "format": "number"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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