# Illinois WARN layoff notices (last 12 months)

**Use case:** 

Layoff and closure notices from the last twelve monthly Illinois WARN workbooks (DCEO / Illinois workNet) as clean rows: employer, location, notice date, effective date and number of workers affected. Use it to watch upcoming layoffs in Illinois by employer or city.

## Input

```json
{
  "states": [
    "IL"
  ],
  "max_records": 5000,
  "il_months_back": 12,
  "request_interval_ms": 1000,
  "contact_email": "info@steelyardclinical.com"
}
```

## Output

```json
{
  "state": {
    "label": "State",
    "format": "text"
  },
  "employer": {
    "label": "Employer",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "county": {
    "label": "County",
    "format": "text"
  },
  "employees": {
    "label": "Employees",
    "format": "number"
  },
  "notice_date": {
    "label": "Notice date",
    "format": "date"
  },
  "effective_date": {
    "label": "Effective date",
    "format": "date"
  },
  "notice_type": {
    "label": "Type",
    "format": "text"
  },
  "reason": {
    "label": "Reason",
    "format": "text"
  },
  "industry": {
    "label": "Industry",
    "format": "text"
  },
  "source_url": {
    "label": "Source file",
    "format": "link"
  },
  "file_last_modified": {
    "label": "File Last-Modified",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [WARN layoff notices scraper - CA, TX, NY, PA + 16 more states](https://apify.com/retrainmap/warn-notices.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/retrainmap/warn-notices.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/retrainmap/warn-notices.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
