# Scrape Chicago Bank-Owned & Auction Properties Daily

**Use case:** 

Extract a daily updated list of all bank-owned (REO) and auction properties in the Chicago metropolitan area to monitor new listings. This provides real estate 

## Input

```json
{
  "search": "Chicago, IL",
  "distressTypes": [
    "bankOwned",
    "auction"
  ],
  "maxItems": 150
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "distressType": {
    "label": "Type",
    "format": "string"
  },
  "address": {
    "label": "Address",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "price": {
    "label": "Price $",
    "format": "number"
  },
  "beds": {
    "label": "Beds",
    "format": "number"
  },
  "baths": {
    "label": "Baths",
    "format": "number"
  },
  "taxAssessedValue": {
    "label": "Tax assessed value",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

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