# Scrape Craigslist job postings across several cities

**Use case:** 

Collect Craigslist job postings from the last seven days in New York, Austin and Denver. Each row carries the job title, employer, pay and a direct link.

## Input

```json
{
  "searchTerms": [],
  "cities": [
    "newyork",
    "austin",
    "denver"
  ],
  "category": "jobs",
  "maxItems": 900,
  "includeDetails": false,
  "startUrls": [],
  "postedWithinDays": 7,
  "hasImage": false,
  "titleOnly": false,
  "searchNearbyAreas": false,
  "sortBy": "newest",
  "deduplicate": true,
  "bundleDuplicates": false,
  "imageSize": "medium",
  "maxRequestRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "location": {
    "label": "Location"
  },
  "city": {
    "label": "City"
  },
  "category": {
    "label": "Category"
  },
  "postedAt": {
    "label": "Posted"
  },
  "imageCount": {
    "label": "Photos"
  },
  "url": {
    "label": "URL"
  }
}
```

## About this Actor

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