# Financial Data x402 — SEC Filings by Ticker

> Financial Data x402 — SEC Filings by Ticker is a paid API for AI agents from x402financialdata.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Retrieves recent SEC filings (10-Q, 8-K, etc.) for a given stock ticker, including document URLs and accession numbers, paid per-call via USDC over the x402 protocol.

## Facts

- Endpoint: GET https://x402financialdata.com/sec-filings/%7Bticker%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/financial-data-x402-sec-filings-by-ticker-23065d20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Wja07lVaVpXd9LRpxFd0e

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 financial-data-x402-sec-filings-by-ticker-23065d20
```

Example prompt: Can you pull the most recent SEC filings for Apple — I want to see the 10-Q and any 8-Ks filed lately, including links to the actual documents.

## When to prefer this

Choose this endpoint when you need structured, machine-readable SEC filing metadata (form type, filing date, document URL, accession number) for a public company by ticker, without managing API keys or subscriptions. Ideal for AI agents that need pay-per-call access to regulatory filings with crypto micropayments via x402. Prefer this over SEC EDGAR direct queries when you want a clean JSON response without parsing raw EDGAR HTML.

## Known failure modes

- Invalid or unknown ticker returns empty filings array or error
- Ticker for a non-public or delisted company may yield no results
- USDC payment failure on x402 protocol returns HTTP 402 and no data
- SEC EDGAR rate limits or downtime may cause upstream failures
- Malformed ticker (e.g. lowercase or extra characters) may not resolve correctly

## How this service works

Pay-per-call stock, macro, on-chain, and crypto data over the x402 protocol. USDC on Base or Solana, no API keys, no subscriptions.

## Output

Returns a JSON object containing the company's CIK, ticker, legal entity name, SIC industry description, and an array of recent filings — each with form type (e.g. 10-Q, 8-K), filing date, a direct URL to the SEC EDGAR document, and the accession number.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "cik": "0000320193",
  "ticker": "AAPL",
  "filings": [
   {
    "form": "10-Q",
    "filed": "2026-07-31",
    "document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000020/aapl-20260627.htm",
    "accession_number": "0000320193-26-000020"
   },
   {
    "form": "8-K",
    "filed": "2026-07-30",
    "document_url": "https://www.sec.gov/Archives/edgar/data/320193/000032019326000018/aapl-20260730.htm",
    "accession_number": "0000320193-26-000018"
   }
  ],
  "entity_name": "Apple Inc.",
  "sic_description": "Electronic Computers",
  "filing_count_returned": 2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/financial-data-x402-sec-filings-by-ticker-23065d20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402financialdata.com](https://www.zero.xyz/host/x402financialdata.com/llms.txt)
