# Scrape Craigslist apartments for rent near a ZIP code

**Use case:** 

Scrape Craigslist apartments for rent within 10 miles of a ZIP code, under $4,000. Get bedrooms, square footage, price, coordinates and the description.

## Input

```json
{
  "searchTerms": [],
  "cities": [
    "newyork"
  ],
  "category": "apartments",
  "maxItems": 500,
  "includeDetails": true,
  "startUrls": [],
  "maxPrice": 4000,
  "hasImage": false,
  "titleOnly": false,
  "searchNearbyAreas": false,
  "postalCode": "10001",
  "searchRadiusMiles": 10,
  "sortBy": "newest",
  "deduplicate": true,
  "bundleDuplicates": false,
  "imageSize": "medium",
  "maxRequestRetries": 4,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "condition": {
    "label": "Condition"
  },
  "make": {
    "label": "Make"
  },
  "model": {
    "label": "Model"
  },
  "description": {
    "label": "Description"
  },
  "latitude": {
    "label": "Lat"
  },
  "longitude": {
    "label": "Lon"
  },
  "attributes": {
    "label": "Attributes"
  },
  "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.