# SEC EDGAR Filing History

> SEC EDGAR Filing History is a paid API for AI agents from x402-stock-indicators.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves official SEC EDGAR filing history for a US-listed stock ticker, returning form type, filing date, accession number, and document link

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/sec-filings/:ticker
- 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/sec-edgar-filing-history-c7c87f92
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Lguu1W9paTZRTCgbWApDW

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-edgar-filing-history-c7c87f92
```

Example prompt: Pull up the last 5 SEC filings for NVDA from EDGAR — I want to see the form types, filing dates, and direct document links.

## When to prefer this

Use this endpoint when you need the raw filing history and document links from SEC EDGAR for a US-listed company — ideal for compliance research, due diligence, insider trading monitoring, or accessing primary source documents. Choose this over /financials when you need the actual filing metadata and links rather than extracted income-statement or balance-sheet numbers.

## Known failure modes

- Unknown or invalid ticker symbol returns an error or empty results
- Form type filter with no matching filings returns empty list
- Limit exceeding 25 is clamped or returns an error
- Ticker is OTC/pink sheet and not indexed in EDGAR
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Official SEC EDGAR filing history for a US-listed ticker: form type (10-K, 10-Q, 8-K, Form 4, etc.), filing date, accession number, and a direct document link -- the actual filings list itself, straight from data.sec.gov. Not fundamentals data (see /financials for extracted income-statement/balance-sheet numbers). Optional 'form' filters to an exact form type (e.g. '10-K'); optional 'limit' caps results (default 10, max 25). $0.05/call.

## Output

A list of SEC filings (up to 25) for the requested ticker, each entry containing the SEC form type (e.g. 10-K, 10-Q, 8-K, Form 4), filing date, accession number, and a direct URL link to the actual document on data.sec.gov.

## 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",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed stock ticker symbol, e.g. AAPL"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "form": {
       "type": "string",
       "description": "Exact SEC form type to filter to, e.g. '10-K'."
      },
      "limit": {
       "type": "integer",
       "description": "Max filings to return, default 10, max 25."
      }
     }
    }
   },
   "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-edgar-filing-history-c7c87f92/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-stock-indicators.vercel.app](https://www.zero.xyz/host/x402-stock-indicators.vercel.app/llms.txt)
