# Zillow Chicago Rentals Scraper

**Use case:** 

Scrape Chicago rental listings from Zillow with address, city, state, zip, price, and listing URL. Export structured data to JSON or CSV.

## Input

```json
{
  "listingUrl": "https://www.zillow.com/chicago-il/rentals/",
  "maxItems": 50,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "url": {
    "label": "Url",
    "format": "link"
  },
  "zpid": {
    "label": "Zpid",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "state": {
    "label": "State",
    "format": "text"
  },
  "zipCode": {
    "label": "Zip Code",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "bedrooms": {
    "label": "Bedrooms",
    "format": "text"
  },
  "bathrooms": {
    "label": "Bathrooms",
    "format": "text"
  },
  "livingArea": {
    "label": "Living Area",
    "format": "text"
  },
  "lotSize": {
    "label": "Lot Size",
    "format": "text"
  },
  "propertyType": {
    "label": "Property Type",
    "format": "text"
  },
  "homeStatus": {
    "label": "Home Status",
    "format": "text"
  },
  "listingStatus": {
    "label": "Listing Status",
    "format": "text"
  },
  "daysOnZillow": {
    "label": "Days On Zillow",
    "format": "text"
  }
}
```

## About this Actor

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