# New York Department of Labor — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search and access Worker Adjustment and Retraining Notification (WARN) Act notices issued by the New York State Department of Labor. Find information about mass layoff notices and employee displacement events across New York, filterable by year and company name or location.

**Category:** Government & Public Data | **Website:** [dol.ny.gov/warn-notices](https://dol.ny.gov/warn-notices) | **Docs:** [parse.bot/marketplace/be1784ba-8627-4a52-a171-7054f467e679/dol-ny-gov-api](https://parse.bot/marketplace/be1784ba-8627-4a52-a171-7054f467e679/dol-ny-gov-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-dol-ny-gov-api-be1784ba/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_warn_notices

Retrieve WARN Act notices from the NY DOL legacy database. Returns company name, region, date posted, notice date, and notice URL. Supports filtering by year (2023-2025) and case-insensitive substring search against company name or location. Results are paginated client-side. As of 4/1/2025, no new notices are added to this database.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results per page. |
| `page` | integer | No | Page number for pagination. |
| `search` | string | No | Case-insensitive substring filter matching against company name or location. |
| `year` | string | No | Year of WARN notices to retrieve. Accepted values: 2023, 2024, 2025. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-dol-ny-gov-api-be1784ba/get_warn_notices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","search":"<string>","year":"<string>"}'
```
