# SEC EDGAR Filing Fetcher, Parser & Summarizer

> SEC EDGAR Filing Fetcher, Parser & Summarizer is a paid API for AI agents from x402-deployer.x402-deployer.workers.dev, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-14).

Fetches, parses, and optionally summarizes SEC EDGAR filings (10-K, 10-Q, 8-K, S-1, and more) returning structured metadata, clean text, and an AI executive summary tuned to the form type.

## Facts

- Endpoint: POST https://x402-deployer.x402-deployer.workers.dev/sec-filing
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-c442d3d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I8O041jfPAxFmcMtLD5J7

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 x402-deployer-x402-deployer-workers-dev-c442d3d4 -d '<json body>'
```

Example prompt: Can you fetch and summarize Microsoft's most recent 10-K annual report from SEC EDGAR — I want the structured metadata and an AI executive summary of the key financials and risk factors?

## When to prefer this

Use this endpoint when an agent needs to retrieve and understand SEC public filings for any US-listed company, especially when a human-readable summary of dense regulatory documents like 10-Ks, proxy statements, or merger filings is needed. Prefer this over generic web scrapers when you want structured, parsed SEC data with optional AI summarization tuned to the specific form type.

## Known failure modes

- Company or CIK not found on EDGAR — returns error indicating no matching filer
- Filing type not available for the specified company or period — returns empty result or 404-style error
- EDGAR rate limiting or unavailability — may return upstream timeout
- Invalid or unsupported form type — returns validation error
- Venice summarization failure — may return filing data without summary

## How this service works

SEC EDGAR filing fetcher + parser + summarizer. 10-K, 10-Q, 8-K, S-1, S-4, DEF 14A, 4, 13F-HR. Returns structured filing metadata, clean text, and optional Venice executive summary tuned to the form type. 100% public-domain SEC data.

## Output

Returns structured filing metadata (accession number, filer, CIK, form type, filing date), clean extracted text of the filing, and an optional Venice-generated executive summary tailored to the specific SEC form type (e.g. financial highlights for 10-K, event description for 8-K).

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {
      "cik": {
       "type": "string",
       "description": "SEC Central Index Key (zero-padded or numeric, e.g. '0000320193'). Use when ticker is ambiguous or unavailable."
      },
      "limit": {
       "type": "number",
       "description": "Max filings to return. 1-20. Default 5 (most-recent-first)."
      },
      "ticker": {
       "type": "string",
       "description": "US-listed stock ticker (e.g. 'AAPL', 'TSLA'). Either ticker or cik is required."
      },
      "form_type": {
       "type": "string",
       "description": "Filing type. Default '10-K'. Supports 10-K, 10-Q, 8-K, S-1, S-4, DEF 14A, 4, 13F-HR."
      },
      "summarize": {
       "type": "boolean",
       "description": "If true, runs the latest filing through Venice for an executive-summary tailored to the form. Adds latency. Default false."
      },
      "include_text": {
       "type": "boolean",
       "description": "If true, includes the full clean-text body of the latest filing in the response. Large payload. Default false."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "cik": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "ticker": {
       "type": "string"
      },
      "filings": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "form": {
          "type": "string"
         },
         "filed_date": {
          "type": "string"
         },
         "accession_number": {
          "type": "string"
         },
         "period_of_report": {
          "type": "string"
         },
         "primary_document_url": {
          "type": "string"
         }
        }
       }
      },
      "summary": {
       "type": "str
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-deployer-x402-deployer-workers-dev-c442d3d4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-deployer.x402-deployer.workers.dev](https://www.zero.xyz/host/x402-deployer.x402-deployer.workers.dev/llms.txt)
