# finance.toonhaus.dev Stock Dividends

> finance.toonhaus.dev Stock Dividends is a paid API for AI agents from finance.toonhaus.dev, 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

## Facts

- Endpoint: GET https://finance.toonhaus.dev/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-toonhaus-dev-b6fe7d97
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mKedy8ddnJsWVoxv4WU0Y

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-b6fe7d97
```

Example prompt: Can you pull up the dividend yield, current rate, ex-dividend date, and 5-year dividend history for ticker AAPL?

## When to prefer this

Use this endpoint when you need specific dividend-focused data for a stock, including yield, rate, ex-date, and historical dividend payouts. Prefer this over generic stock quote endpoints when the user's question is specifically about dividend income, dividend history, or ex-dividend timing. Part of the finance.toonhaus.dev suite, so combine with sibling endpoints for analyst recommendations or insider transactions for a fuller investment picture.

## Known failure modes

- Stock ticker not found or invalid — returns error or empty result
- Stock pays no dividends — returns null or zero values for yield/rate
- Network timeout or service unavailability — returns HTTP 5xx
- Payment not processed or insufficient balance — returns HTTP 402
- Missing required query parameters — returns HTTP 400 with validation error

## How this service works

Yield, rate, ex-date, 5yr history

## Output

Returns structured dividend data including current dividend yield (as a percentage), annualized dividend rate, the most recent or upcoming ex-dividend date, and up to 5 years of historical dividend payments for the queried stock symbol.

## 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-b6fe7d97/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)
