# finance.toonhaus.dev Stock Financials

> finance.toonhaus.dev Stock Financials 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-15).

Retrieves income statements, balance sheets, and cash flow statements for a given stock

## Facts

- Endpoint: GET https://finance.toonhaus.dev/api/stock/financials
- 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-toonhaus-dev-43fd4eba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kGEYDtr9zN1OthNBfcvn5

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-43fd4eba
```

Example prompt: Can you pull up the income statement, balance sheet, and cash flow statement for Apple (AAPL)? I want to see their latest financials.

## When to prefer this

Use this endpoint when you need structured fundamental financial data — income statements, balance sheets, or cash flow statements — for a publicly traded company. Prefer this over news or analyst endpoints when the user wants raw financial metrics like revenue, net income, assets, or cash flow figures.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Missing required query parameters (e.g. ticker) returns a 400 bad request
- Payment not completed results in 402 Payment Required
- Rate limiting or quota exceeded returns a 429 error
- Service unavailable returns a 503 error

## 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, shareholders' equity), and cash flow statement (operating, investing, financing cash flows) for the requested stock ticker.

## 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-toonhaus-dev-43fd4eba/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)
