# Find Craigslist Jobs by City and Category (Python)

**Use case:** 

Scrape Craigslist job listings by city and category — title, location, posting date, and full description. Filter by keyword across US metros for recruiting, ma

## Input

```json
{
  "city": "chicago",
  "category": "jjj",
  "maxResults": 10
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "neighborhood": {
    "label": "Neighborhood",
    "format": "text"
  },
  "posted_date": {
    "label": "Posted Date",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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