# Craigslist Job Monitor for Hiring Leads

**Use case:** 

Monitor Craigslist job listings by keyword and city to collect local hiring leads, posting URLs, and listing metadata.

## Input

```json
{
  "searchQueries": [
    "warehouse",
    "delivery driver"
  ],
  "city": "chicago",
  "category": "jobs",
  "maxResults": 50,
  "includeDetails": true,
  "minPrice": 100,
  "maxPrice": 1000,
  "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.