# SEC Filings Lookup by Ticker

> SEC Filings Lookup by Ticker 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).

Fetches the most recent SEC filings (10-Q, 8-K, etc.) for a given stock ticker, including document URLs and accession numbers, via pay-per-call x402 micropayment.

## Facts

- Endpoint: GET https://x402-stock-indicators.vercel.app/sec-filings/%7Bticker%7D
- 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-filings-lookup-by-ticker-c8fe1d79
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8HibOs0EB7uw5vm2mLt_E

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-filings-lookup-by-ticker-c8fe1d79
```

Example prompt: Pull up the latest SEC filings for AAPL — I want to see the recent 10-Q and 8-K documents with links to the actual EDGAR files.

## When to prefer this

Choose this endpoint when you need structured access to SEC EDGAR filings by ticker symbol without managing API keys or subscriptions. It is ideal for agents doing equity research, compliance monitoring, or due diligence that need direct EDGAR document URLs and filing metadata. Prefer this over manual EDGAR web scraping or subscription data services when cost-per-call efficiency matters and you can pay micro-amounts in USDC via x402.

## Known failure modes

- Invalid or unknown ticker symbol returns an empty or error response
- Ticker not listed on a US exchange may not have SEC filings
- Payment failure via x402 protocol blocks the request
- Rate limiting or Vercel cold-start delays may cause timeouts
- Very new companies or recent IPOs may have limited filing history

## 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 number, entity name, SIC description, and an array of recent filings each with form type (e.g. 10-Q, 8-K), filing date, direct EDGAR document URL, and 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/sec-filings-lookup-by-ticker-c8fe1d79/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)
