get_dividend_history
Dividend payment history for a ticker. Chart-ready: includes the
current snapshot (yield %, payout ratio, frequency, annualised
payout) plus two time series — a per-payment list
[{ex_date, pay_date, amount, yield_pct, is_special, ...}] (newest
first, capped at count) and an annual_totals list
[{year, amount, yield_pct}] suitable for a yearly bar chart.
All yields are emitted as percentages (4.5 = 4.5%), so plots don't
need to know which underlying field used decimal vs. percentage
encoding.
Use for: "AAPL dividend history", "yield trend over 5 years",
"dividend growth chart", "is the payout sustainable".
Args:
ticker: Stock ticker (e.g. 'AAPL', 'JNJ').
count: Number of most-recent individual payments to return
(default 16, max 100). The annual_totals series is
always returned in full.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | ||
| ticker | Yes |