# Filedge SEC Filing Parser

> Filedge SEC Filing Parser is a paid API for AI agents from filedge.io, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Parses SEC filings (10-Q, 10-K, 8-K, Form 4) and earnings transcripts into structured JSON via EDGAR ticker or direct URL

## Facts

- Endpoint: POST https://filedge.io/v1/parse
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/filedge-io-97dec1b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3H9HnseKOdgmwGiNTTYHi

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 filedge-io-97dec1b9 -d '<json body>'
```

Example prompt: Parse Tesla's latest 10-K filing from EDGAR into structured JSON so I can see the key financial figures and risk factors.

## When to prefer this

Use this endpoint when you need to programmatically extract structured data from SEC filings (10-Q, 10-K, 8-K, Form 4) or earnings transcripts and want JSON output rather than raw text. Prefer this over general web scrapers when dealing specifically with EDGAR documents, as it understands SEC filing structure natively and supports both ticker-based and URL-based lookups.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error
- Filing type not supported or not found on EDGAR
- Direct URL is inaccessible or not a valid SEC filing
- Malformed filing document that cannot be parsed
- Rate limiting or payment failure (x402 payment required at $0.05 USDC per call)
- Transcript not available for the requested period

## How this service works

Parse SEC filings (10-Q, 10-K, 8-K, Form 4) and earnings transcripts into structured JSON. Supports EDGAR by ticker or direct URL.

## Output

Returns a structured JSON object containing parsed sections of the SEC filing or earnings transcript — including financial statements, narrative sections, form fields (e.g. insider transaction details for Form 4), and metadata such as filing date, company name, and ticker symbol.

## Example request

```json
{
 "type": "10-K",
 "period": "latest",
 "source": "edgar",
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "url": {
   "type": "string",
   "format": "uri",
   "description": "Direct filing, transcript, or document URL; required when source is url."
  },
  "type": {
   "enum": [
    "10-Q",
    "10-K",
    "8-K",
    "form4"
   ],
   "type": "string",
   "examples": [
    "10-Q"
   ],
   "description": "SEC filing type; required when source is edgar."
  },
  "period": {
   "type": "string",
   "default": "latest",
   "examples": [
    "latest",
    "2024-Q1",
    "2024"
   ],
   "description": "Reporting period selector: latest, YYYY-QN, or YYYY."
  },
  "source": {
   "enum": [
    "edgar",
    "transcript",
    "url"
   ],
   "type": "string",
   "examples": [
    "edgar"
   ],
   "description": "Document source to parse."
  },
  "ticker": {
   "type": "string",
   "examples": [
    "AAPL",
    "MSFT",
    "NVDA"
   ],
   "description": "Public company ticker symbol; required for EDGAR lookup unless url is supplied."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/filedge-io-97dec1b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from filedge.io](https://www.zero.xyz/host/filedge.io/llms.txt)
