# Scrape Chicago Job Postings from Craigslist

**Use case:** 

Chicago Craigslist job posts with title, description, postedAt, location, categoryLabel and url — download the feed in CSV or JSON.

## Input

```json
{
  "startUrls": [],
  "region": "chicago",
  "category": "jjj",
  "condition": "any",
  "hasImage": false,
  "postedToday": false,
  "sort": "date",
  "includeDetails": true,
  "maxResults": 250
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "priceUsd": {
    "label": "Price",
    "format": "number"
  },
  "categoryLabel": {
    "label": "Category",
    "format": "text"
  },
  "region": {
    "label": "City",
    "format": "text"
  },
  "location": {
    "label": "Neighborhood",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  },
  "hasImages": {
    "label": "Has images",
    "format": "boolean"
  },
  "url": {
    "label": "Listing",
    "format": "link"
  }
}
```

## About this Actor

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