# Pennsylvania WARN layoff notices

**Use case:** 

Layoff and closure notices published by the Pennsylvania Department of Labor and Industry, from 2023 on, as clean rows: employer, county, address and city, number of workers affected, effective date and whether it is a closure or a layoff. Pennsylvania files each notice under a month and never prints the day it was received, so notice_date is empty and the filing month is in source_period.

## Input

```json
{
  "states": [
    "PA"
  ],
  "max_records": 5000,
  "il_months_back": 2,
  "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`).
