# Export WARN layoff notices to CSV

**Use case:** 

Download WARN mass-layoff notices as a clean CSV: company, location, employees affected, notice & effective dates.

## Input

```json
{
  "states": [
    "TX",
    "IN"
  ],
  "lookbackDays": 60,
  "minEmployees": 0,
  "maxRecords": 25,
  "monitorMode": false,
  "alertOnNewNotice": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "diagnose": false
}
```

## Output

```json
{
  "notice_date": {
    "label": "Noticed",
    "format": "string"
  },
  "state": {
    "label": "State",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "employees_affected": {
    "label": "Affected",
    "format": "number"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "effective_date": {
    "label": "Effective",
    "format": "string"
  },
  "layoff_type": {
    "label": "Type",
    "format": "string"
  },
  "source_url": {
    "label": "Source",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [WARN Layoff Monitor — New Mass-Layoff & Closure Alerts](https://apify.com/scrapersdelight/warn-layoff-monitor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/warn-layoff-monitor) to learn more, explore other use cases, and run it yourself.