# finance.toon.haus Stock Dividends

> finance.toon.haus Stock Dividends is a paid API for AI agents from finance.toon.haus, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-13).

Returns dividend yield, rate, ex-date, and 5-year dividend history for a given stock symbol

## Facts

- Endpoint: GET https://finance.toon.haus/api/stock/dividends
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/finance-toon-haus-9523e068
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p2T25e7jQIEkXCdWfvIRD

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-9523e068
```

Example prompt: What's the current dividend yield, rate, and ex-date for Coca-Cola (KO), and can you show me its 5-year dividend history?

## When to prefer this

Use this endpoint when you need dividend-specific data for a stock, including yield, rate, ex-date, and historical dividend trends over 5 years. Prefer this over general quote endpoints when the user's focus is income investing, dividend screening, or tracking payout history rather than price data.

## Known failure modes

- Invalid or unknown ticker symbol returns an error or empty result
- Non-dividend-paying stocks may return null or zero values for yield/rate
- Network timeout or service unavailability returns HTTP 5xx
- Payment failure (insufficient USDC balance) blocks the request via x402 protocol
- Missing required query parameter (stock ticker) returns a 400-level error

## How this service works

Yield, rate, ex-date, 5yr history

## Output

Returns structured dividend data including the dividend yield percentage, dividend rate (dollar amount per share), ex-dividend date, and a 5-year historical record of dividend payments for the queried stock symbol.

## Example request

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

## 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-9523e068/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)
