# SEC Filing Risk Snapshot

> SEC Filing Risk Snapshot is a paid API for AI agents from api.jpverify.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns cached SEC EDGAR filing and disclosure metadata for a known company CIK, including filing history, disclosure signals, and a risk decision summary.

## Facts

- Endpoint: GET https://api.jpverify.com/v1/entities/:entity_id/filing-risk-snapshot
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sec-filing-risk-snapshot-cad823af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YaBCsQL7Jia-C7D6UzBma

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-risk-snapshot-cad823af
```

Example prompt: Can you pull the SEC EDGAR filing risk snapshot for CIK 0001318605 and tell me what disclosure signals and filing history it shows?

## When to prefer this

Choose this endpoint when you already know a company's SEC CIK and need a quick, objective summary of their EDGAR filing history and disclosure signals for compliance, due diligence, or risk screening purposes. It is especially useful for agents that need structured regulatory metadata without building a full EDGAR integration. Prefer this over raw EDGAR scraping when you need a pre-parsed, cached snapshot with a risk decision field. Not suitable for investment advice, real-time filing alerts, or cases where you need to search for a CIK by company name.

## Known failure modes

- Unknown or invalid CIK returns a 404 or empty entity response
- Rate limiting across all callers may result in 429 Too Many Requests
- Cached data may be stale if the company filed very recently
- CIK must be known in advance — no search-by-name capability apparent
- Payment failure (insufficient USDC balance) results in 402 Payment Required

## How this service works

Return objective SEC EDGAR filing and disclosure metadata for a known CIK. This is not a credit rating or investment advice; results are cached and globally rate limited. / 既知のCIKについてSEC EDGAR提出書類と開示メタデータを返します。信用格付けや投資助言ではなく、結果はキャッシュされ全体レート制限されます。

## Output

Returns a JSON object containing the entity's SEC EDGAR filing list, a facts summary, disclosure signals (e.g. late filings, restatements, going concern notices), a decision field summarizing overall risk posture, known limitations of the data, and an as-of timestamp indicating when the data was cached. This is not a credit rating or investment advice.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "as_of": {
      "type": "string"
     },
     "entity": {
      "type": "object"
     },
     "source": {
      "type": "string"
     },
     "filings": {
      "type": "array"
     },
     "decision": {
      "type": "string"
     },
     "limitations": {
      "type": "array"
     },
     "facts_summary": {
      "type": "object"
     },
     "disclosure_signals": {
      "type": "array"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-filing-risk-snapshot-cad823af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.jpverify.com](https://www.zero.xyz/host/api.jpverify.com/llms.txt)
