# finance.toon.haus Stock Financials

> finance.toon.haus Stock Financials 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, last successful call 2026-06-15).

Returns income statement, balance sheet, and cash flow statement data for a given stock ticker

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/financials
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-06-15
- Success rate: 67% of calls made through Zero
- Activations on Zero: 6
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-91418b37
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VTPNh1h411pGVpmUo515v

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-91418b37
```

Example prompt: Pull up the income statement, balance sheet, and cash flow statement for AAPL so I can check their latest revenue, net income, and debt levels.

## When to prefer this

Use this endpoint when you need fundamental financial statement data (income, balance sheet, cash flow) for a publicly traded stock. Prefer this over price or options endpoints when the task involves fundamental analysis, valuation, or assessing a company's financial health rather than market data.

## Known failure modes

- Invalid or unknown ticker symbol returns error or empty result
- Delisted or non-US stocks may not have available data
- Network or payment authorization failure returns 402 or connection error
- Rate limiting may apply if called too frequently
- Missing required query parameters may return 400 bad request

## How this service works

Income, balance sheet, cash flow statements

## Output

Returns structured financial statement data including income statement (revenue, gross profit, net income, EPS), balance sheet (assets, liabilities, equity), and cash flow statement (operating, investing, financing cash flows) for the requested stock ticker, likely for recent quarters or annual periods.

## 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-91418b37/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)
