dividend
Most-recent dividend amount per share.
At a glance
| Type | numeric |
| Group | Events |
| Category | Dividends |
| Unit | USD |
| Update cadence | post-close daily |
| Intervals | 1d |
| Universe | all tickers |
| History | full · since 2004 |
| Nullable | yes — NULL where not applicable |
Dividend amount, schedule, and approach flags.
Query it
Every applicable form factor, grouped by endpoint family. Swap YOUR_KEY for the value from /dashboard/keys. Response payloads are real captures, sampled 2026-08-18 and trimmed — your run's values and dates will differ.
Use signals /v2/signals/{signal}
One signal across the market: who matches now, who matched then, and a push when someone starts. Docs →
curl -G "https://api.tickerbot.io/v2/signals/dividend" \
--data-urlencode "condition=> 2.9407" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:27.700Z",
"signal": "dividend",
"condition": "> 2.9407",
"universe": null,
"count": 2,
"results": [
{
"ticker": "TDG",
"name": "TransDigm Group Incorporated",
"value": 90
},
{
"ticker": "ARKD",
"name": "ARK DIET Q1 Buffer ETF",
"value": 59.6341
}
]
}curl -G "https://api.tickerbot.io/v2/signals/dividend" \
--data-urlencode "condition=> 2.9407" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"signal": "dividend",
"condition": "> 2.9407",
"universe": null,
"count": 2,
"results": [
{
"ticker": "TDG",
"name": "TransDigm Group Incorporated",
"value": 90
},
{
"ticker": "ARKD",
"name": "ARK DIET Q1 Buffer ETF",
"value": 59.63412125
}
]
}curl -X POST "https://api.tickerbot.io/v2/signals/dividend/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"condition": "> 2.9407", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook — the same shape as GET /v2/webhooks/{id}, plus a one-time signing_secret for HMAC verification.
Use scan /v2/scan
The whole market through a WHERE clause — this signal composed freely with any other column. Docs →
curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=dividend IS NOT NULL" \
-d "order=dividend" -d "columns=dividend" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:31.194Z",
"query": {
"q": "dividend IS NOT NULL",
"limit": 2,
"order": "dividend",
"dir": "desc",
"fields": [
"dividend"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TDG",
"name": "TransDigm Group Incorporated",
"asset_class": "stocks",
"asset_type": "CS",
"price": 1241.676,
"day_change_pct": -0.0121,
"gap_pct": 0.0001,
"relative_volume": 0.3593,
"market_cap": 69477064272,
"dividend": 90
},
{
"ticker": "ARKD",
"name": "ARK DIET Q1 Buffer ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 20.59,
"day_change_pct": 0.0115,
"gap_pct": 0.0004,
"relative_volume": null,
"market_cap": null,
"dividend": 59.6341
}
]
}curl -G "https://api.tickerbot.io/v2/scan" \
--data-urlencode "q=dividend IS NOT NULL" \
-d "order=dividend" -d "columns=dividend" \
-d "asof=2026-05-20" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-05-20",
"query": {
"q": "dividend IS NOT NULL",
"asof": "2026-05-20",
"interval": "auto",
"limit": 2,
"order": "dividend",
"dir": "desc",
"fields": [
"dividend"
],
"full": false,
"universe": null,
"asset_class": null
},
"count": 2,
"results": [
{
"ticker": "TDG",
"name": "TransDigm Group Incorporated",
"asset_class": "stocks",
"asset_type": "CS",
"price": 1198.09,
"day_change_pct": 1.6122739763205205,
"gap_pct": 0.35536180751094537,
"relative_volume": 0.904188330026139,
"market_cap": null,
"dividend": 90
},
{
"ticker": "ARKD",
"name": "ARK DIET Q1 Buffer ETF",
"asset_class": "stocks",
"asset_type": "ETF",
"price": 19.7087,
"day_change_pct": 1.2249488962619899,
"gap_pct": 1.2249488962619899,
"relative_volume": null,
"market_cap": null,
"dividend": 59.63412125
}
]
}curl -X POST "https://api.tickerbot.io/v2/scan/subscribe" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_KEY" \
-d '{"q": "dividend > 2.9407", "target_url": "https://example.com/hooks/tickerbot"}'Returns 201 with the created webhook object; deliveries carry the tickers matching the condition at each evaluation.
Use series /v2/series
Its history over time, on one aligned grid. Docs →
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,dividend" \
-H "Authorization: Bearer YOUR_KEY"{
"as_of": "2026-08-18T00:23:34.076Z",
"interval": "1d",
"tickers": [
"AAPL",
"MSFT"
],
"columns": [
"close",
"dividend"
],
"count": 6,
"series": {
"AAPL": [
{
"t": "2026-08-12",
"close": 302.25,
"dividend": 0.27
},
{
"t": "2026-08-13",
"close": 305.26,
"dividend": 0.27
},
{
"t": "2026-08-14",
"close": 305.93,
"dividend": 0.27
}
],
"MSFT": [
{
"t": "2026-08-12",
"close": 492.43,
"dividend": 0.91
},
{
"t": "2026-08-13",
"close": 496.88,
"dividend": 0.91
},
{
"t": "2026-08-14",
"close": 495.4,
"dividend": 0.91
}
]
}
}Same grammar on scan, series, and webhooks; state reads take ?asof= for point-in-time answers.