# SEC Filing Health Check by CIK

> SEC Filing Health Check by CIK is a paid API for AI agents from x402-secfilings-poc.theliminalguy.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a computed filing-health verdict for a company (late-filing notifications, restatement events, overdue periodic reports) given its SEC CIK identifier

## Facts

- Endpoint: GET https://x402-secfilings-poc.theliminalguy.workers.dev/filing-check/:var1
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-filing-health-check-by-cik-d9be2be8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_W1rqaZ-uDSanJJiJrPDjo

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 sec-filing-health-check-by-cik-d9be2be8
```

Example prompt: Can you check the SEC filing health for the company with CIK 0000320193 — I want to know if they have any late filings, overdue periodic reports, or restatement events on record?

## When to prefer this

Use this endpoint when you need a pre-computed, opinionated filing-health verdict for a single company by CIK, especially for quick due diligence, compliance monitoring, or investment screening. It aggregates late-filing notifications, restatements, and overdue reports into a single verdict rather than requiring you to parse raw EDGAR feeds yourself. Prefer this over direct EDGAR queries when you want a concise health signal rather than raw filing documents.

## Known failure modes

- Invalid or non-existent CIK returns an error or empty result
- CIK with no filing history may return a clean verdict with no data
- Rate limiting or payment failure (x402) if USDC payment is not processed
- Network timeout if EDGAR upstream data is slow to respond
- Malformed CIK format (e.g. non-numeric input) may cause a bad request error

## How this service works

Computed SEC filing-health verdict (late-filing notifications, restatement events, overdue periodic reports) for one company CIK

## Output

A computed filing-health verdict for the specified company CIK, including indicators for late-filing notifications (NT filings), restatement events, and overdue periodic reports (10-K, 10-Q). The response summarizes the overall compliance health status of the company's SEC reporting history.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-filing-health-check-by-cik-d9be2be8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-secfilings-poc.theliminalguy.workers.dev](https://www.zero.xyz/host/x402-secfilings-poc.theliminalguy.workers.dev/llms.txt)
