# finance.toon.haus SEC Filings

> finance.toon.haus SEC Filings is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves SEC filings (10-K, 10-Q, 8-K, and other regulatory documents) for publicly traded companies

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-c85f47c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZrEWwdWnIIKskEeYBHcTU

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 finance-toon-haus-c85f47c9
```

Example prompt: Pull up the SEC filings for NVDA — I want to see their most recent 10-K and any 8-K filings they've submitted lately.

## When to prefer this

Use this endpoint when you need structured access to SEC regulatory filings (10-K annual reports, 10-Q quarterly reports, 8-K material event disclosures) for publicly traded US companies. Prefer this over general financial data endpoints when the specific need is compliance documents or official regulatory filings rather than price data or news.

## Known failure modes

- Invalid or unknown ticker symbol returns empty results or error
- No filings found for an obscure or recently listed company
- Rate limiting or payment failure if x402 micropayment is not properly handled
- Network timeout if SEC data source is temporarily unavailable

## How this service works

SEC filings (10-K, 10-Q, 8-K, etc.)

## Output

Returns a list of SEC filing records for the queried company, including filing types (10-K, 10-Q, 8-K, etc.), filing dates, and associated document metadata or links to the regulatory submissions.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/finance-toon-haus-c85f47c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toon.haus](https://www.zero.xyz/host/finance.toon.haus/llms.txt)
