# SEC Filing Brief

> SEC Filing Brief is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-14).

Returns an LLM-analyzed investor brief of a US public company's recent SEC filings (8-K, 10-Q, 10-K, DEF 14A, S-1), ranked by materiality with EDGAR citation links, for a given ticker symbol.

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/sec-filing-brief
- Price: $0.08/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-brief-087df964
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Vm0DGD3OLKf16hZPkTql7

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-brief-087df964
```

Example prompt: Can you pull an investor brief on NVDA's recent SEC filings from the last 90 days — I want to know about any material earnings updates, executive changes, M&A, or restatements with links to the actual EDGAR filings?

## When to prefer this

Use this endpoint when an agent or user needs a fast, materiality-ranked investor summary of a US public company's recent SEC filings without manually parsing EDGAR. Ideal for investment research workflows, compliance monitoring, earnings tracking, and corporate event detection. Prefer this over raw EDGAR queries when you need human-readable synthesis with accession-number citations rather than raw XML/HTML documents.

## Known failure modes

- Unknown or invalid ticker symbol returns an error or empty result
- Company has no filings within the requested time window
- EDGAR API unavailability causing data fetch failure
- Very recent filings not yet indexed by EDGAR
- LLM analysis failure on unusual or highly complex filings

## How this service works

sec-filing-brief: SEC Filing Brief - LLM-analyzed investor brief of a US public company's recent SEC filings, by ticker. Pulls material filings (8-K, 10-Q, 10-K, DEF 14A, S-1), decodes 8-K item codes, reads the newest filings, and returns a headline plus key points ranked by materiality: earnings, executive and auditor changes, M&A, financing, restatements. Every point cites a real SEC accession number with a direct EDGAR link. Query: ticker (AAPL), days (default 90).

## Output

A structured brief containing a headline summary and a ranked list of material points extracted from recent SEC filings (8-K, 10-Q, 10-K, DEF 14A, S-1) for the requested ticker. Each point is categorized by type (earnings, executive changes, auditor changes, M&A, financing, restatements), decoded from 8-K item codes where applicable, and cited with a real SEC accession number and a direct link to the EDGAR filing.

## 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",
     "properties": {
      "days": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sec-filing-brief-087df964/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
