# GovParse Distress Signals Feed

> GovParse Distress Signals Feed is a paid API for AI agents from api.govparse.io, paid per call via x402, $25/call, status unknown (last checked 2026-09-13).

Returns one observational row per business entity carrying public-record distress markers across nine tracked categories including WARN notices, Form 5500 drops, IRS auto-revocations, SEC filings, FMCSA authority revocations, and active enforcement cases.

## Facts

- Endpoint: GET https://api.govparse.io/v1/feeds/distress-signals
- Price: $25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/govparse-distress-signals-feed-fc9d0990
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gTiupkDhjagj7UcobqRx9

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 govparse-distress-signals-feed-fc9d0990
```

Example prompt: Pull the GovParse distress signals feed for companies in California and Texas that have at least 2 distinct distress marker types, focusing only on entries with a marker event since 2025-01-01 — I want to see things like WARN notices, going-concern filings, and FMCSA authority revocations.

## When to prefer this

Choose this endpoint when you need structured, per-entity public-record distress signals aggregated across nine government data sources in a single feed — WARN Act, Form 5500, IRS, SEC, and FMCSA — rather than querying each source separately. Prefer it over general business data APIs when you specifically need regulatory and compliance distress signals with raw filing counts and dates, not credit scores or proprietary risk scores. Ideal for compliance teams, due-diligence workflows, and monitoring pipelines that must document the public-record basis of any distress flag. Not appropriate for FCRA-regulated consumer reporting use cases.

## Known failure modes

- Invalid marker key returns 400 with list of valid marker values
- Invalid date format for 'since' parameter returns 400
- Cursor from a different query context may return unexpected results or 400
- State code not recognized returns 400 or empty result set
- min_markers outside 1-9 range returns 400
- Rate limit exceeded returns 429
- Payment not processed or x402 auth failure returns 402

## How this service works

Which businesses carry public-record distress markers? One observational row per subject across ten tracked marker types — WARN notice, Form 5500 participant drop, final filing, or Schedule H asset decline, IRS auto-revocation, SEC NT / 8-K / going-concern filings, FMCSA authority revocation, active enforcement case — with per-marker counts, dates, and details. Ticker/CIK-mapped where identifier-verified, basis disclosed. Counts as filed, never a score. NOT a consumer report, no FCRA use.

## Output

A paginated list of business entities, one row per subject, each containing the marker types present, per-marker event counts, dates, and filing details. Where available, subjects include ticker or CIK identifiers with verification basis disclosed. Response includes a next_cursor for pagination and never synthesizes a composite score — all counts reflect raw public filings.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [],
   "properties": {
    "limit": {
     "type": "integer",
     "examples": [
      500
     ],
     "description": "Rows per page (default 500, cap 1000)."
    },
    "since": {
     "type": "string",
     "examples": [
      "2026-06-01"
     ],
     "description": "Only subjects with a marker event dated on or after this date (YYYY-MM-DD)."
    },
    "state": {
     "type": "string",
     "examples": [
      "TX,OK"
     ],
     "description": "Subject state code(s), CSV. Some subjects carry no state (identified by EIN/CIK only)."
    },
    "cursor": {
     "type": "string",
     "examples": [
      "eyJrIjoiZWluOjI2NDI3MzQ3NCJ9"
     ],
     "description": "Opaque page cursor — pass the previous page's next_cursor unchanged."
    },
    "marker": {
     "type": "string",
     "examples": [
      "warn_notice_180d"
     ],
     "description": "Only subjects carrying this marker key: warn_notice_180d | active_participants_drop_20pct_yoy | final_form5500_filing | irs_auto_revocation_1y | nt_late_filing_180d | form8k_distress_item_180d | going_concern_language_1y | fmcsa_authority_revocation_180d | active_enforcement_case."
    },
    "min_markers": {
     "type": "integer",
     "examples": [
      2
     ],
     "description": "Only subjects carrying at least this many distinct marker types (1-9). Default 1."
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/govparse-distress-signals-feed-fc9d0990/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.govparse.io](https://www.zero.xyz/host/api.govparse.io/llms.txt)
