# Craigslist Housing Extractor for Apartments

**Use case:** 

Extract Craigslist apartment listings by city and budget for rental lead generation and housing market analysis.

## Input

```json
{
  "searchQueries": [
    "studio",
    "one bedroom"
  ],
  "city": "newyork",
  "category": "housing",
  "maxResults": 25,
  "includeDetails": false,
  "minPrice": 100,
  "maxPrice": 2500,
  "maxRequestRetries": 3
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "postedAt": {
    "label": "Posted At",
    "format": "string"
  },
  "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.