# DataSig WARN Act Filing Intelligence

> DataSig WARN Act Filing Intelligence is a paid API for AI agents from datasig.ai, paid per call via x402, $0.042/call, status unknown (last checked 2026-09-14).

Checks for WARN Act layoff/closure filings associated with a named company to assess supplier distress and supply chain risk

## Facts

- Endpoint: GET https://datasig.ai/signals/regulatory/warn-act
- Price: $0.042/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datasig-warn-act-filing-intelligence-652aa3e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BTFoxeLutuxlPPxf6veax

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability datasig-warn-act-filing-intelligence-652aa3e9
```

Example prompt: Check if Acme Freight has any WARN Act filings in California — I need to know the supply chain impact and whether I should review our carrier contracts with them.

## When to prefer this

Use this endpoint when you need to detect workforce reduction signals (WARN Act filings) as a leading indicator of supplier or carrier distress, particularly before contract renewals, bid evaluations, or supply chain risk reviews. Prefer this over general financial risk APIs when the specific signal needed is a government-mandated layoff or plant-closure notice tied to a named company.

## Known failure modes

- Missing required 'company' query parameter returns a validation error
- Unknown or misspelled company name may return no signal or a null result
- State code not supported beyond CA/TX may return an error or empty result
- Network or payment failure via x402 micropayment may result in a 402 or timeout
- WARN Act data may have a lag from public filings, resulting in stale signals

## How this service works

DataSig delivers live supply chain action intelligence to AI agents via x402 micropayments. Tariff changes, port congestion, blank sailing risk, supplier distress. Pay per call in USDC on Base. No API key.

## Output

Returns a JSON object with a signal type (e.g. WARN_FILING_DETECTED), a recommended agent action (e.g. REVIEW_CARRIER_CONTRACTS), and a supply chain impact rating (HIGH, MEDIUM, LOW) for the queried company.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "company"
     ],
     "properties": {
      "state": {
       "type": "string",
       "description": "State code: CA, TX"
      },
      "company": {
       "type": "string",
       "description": "Company name to search"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "signal": "WARN_FILING_DETECTED",
  "agent_action": "REVIEW_CARRIER_CONTRACTS",
  "supply_chain_impact": "HIGH"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datasig-warn-act-filing-intelligence-652aa3e9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datasig.ai](https://www.zero.xyz/host/datasig.ai/llms.txt)
