# Cook County Property Records by Address

**Use case:** 

Look up Cook County, IL property records by address — owner, assessed value, tax history, and recorded sales as JSON, from public county assessor data.

## Input

```json
{
  "addresses": [
    "425 Addison Rd, Riverside, IL 60546"
  ],
  "parcelLookups": [],
  "county": "",
  "state": "",
  "includeHistory": true,
  "maxRecords": 50
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "owner_name": {
    "label": "Owner name",
    "format": "string"
  },
  "situs_address": {
    "label": "Property (situs) address",
    "format": "string"
  },
  "assessed_value": {
    "label": "Assessed value (USD)",
    "format": "number"
  },
  "last_sale_price": {
    "label": "Last sale price (USD)",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [US County Property Records API — Owner, Value, Tax & Sales](https://apify.com/shelvick/county-property-records) with a specific input configuration. Visit the [Actor detail page](https://apify.com/shelvick/county-property-records) to learn more, explore other use cases, and run it yourself.