# finance.toonhaus.dev SEC Filings

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

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

## Facts

- Endpoint: GET https://finance.toonhaus.dev/api/stock/filings
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toonhaus-dev-2948dee7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YRjEJv_xkEfn4W3iRgfZu

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-toonhaus-dev-2948dee7
```

Example prompt: Can you pull up the recent SEC filings for Apple — specifically any 10-K annual reports and 8-K current reports?

## When to prefer this

Use this endpoint when an agent needs to access official SEC regulatory filings for publicly traded US companies, particularly for financial research, compliance review, or due diligence tasks. Prefer this over general financial data endpoints when the specific need is for structured regulatory documents like annual reports (10-K), quarterly reports (10-Q), or material event disclosures (8-K).

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty results or error
- Filing type not available for the requested company
- Rate limiting or payment failure returns 402 status
- Network timeout for large filing datasets
- No filings found for very recent or newly listed companies

## How this service works

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

## Output

A list of SEC filing records for the requested company, including filing type (10-K, 10-Q, 8-K, etc.), filing dates, and associated metadata such as document links or descriptions.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "AAPL",
   "filingType": "10-K"
  }
 }
}
```

## 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-toonhaus-dev-2948dee7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance.toonhaus.dev](https://www.zero.xyz/host/finance.toonhaus.dev/llms.txt)
