# dividend

Most-recent dividend amount per share.

A numeric signal column on the Tickerbot computed state table (20,798+ ticker rows) — computed by the platform, queryable by bare name across the API. Values are NULL on rows the signal doesn't apply to.

- Group: Events
- Category: Dividends
- Type: numeric
- Unit: USD
- Update cadence: post-close daily
- Intervals: 1d
- Universe: all tickers
- History: full · since 2004
- Nullable: yes

## Query it

Every applicable form factor, grouped by endpoint family. 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. (https://tickerbot.io/docs/endpoints/signals.md)

#### Live — every ticker with dividend above a cutoff

```bash
curl -G "https://api.tickerbot.io/v2/signals/dividend" \
  --data-urlencode "condition=> 2.9407" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### As-of — the same read at a past date

```bash
curl -G "https://api.tickerbot.io/v2/signals/dividend" \
  --data-urlencode "condition=> 2.9407" \
  -d "asof=2026-05-20" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### Subscribe — webhook when a ticker starts matching

```bash
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. (https://tickerbot.io/docs/endpoints/scan.md)

#### Live — the whole market, ranked by this column

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### As-of — the same scan at a past date

```bash
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"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
  }
 ]
}
```

#### Subscribe — webhook on a market-wide condition

```bash
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. (https://tickerbot.io/docs/endpoints/series.md)

#### History — the column on an aligned time grid

```bash
curl "https://api.tickerbot.io/v2/series?tickers=AAPL,MSFT&columns=close,dividend" \
  -H "Authorization: Bearer YOUR_KEY"
```

Response (sampled 2026-08-18, trimmed):

```json
{
 "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
   }
  ]
 }
}
```

## Related signals (Dividends)

- [dividend_approaching](https://tickerbot.io/docs/signals/dividend_approaching.md)
- [dividend_date](https://tickerbot.io/docs/signals/dividend_date.md)
- [dividend_frequency](https://tickerbot.io/docs/signals/dividend_frequency.md)

---

Full catalog: https://tickerbot.io/docs/signals.md · Schema: https://tickerbot.io/docs/schema.md · Interactive: https://tickerbot.io/explore?signal=dividend · HTML: https://tickerbot.io/docs/signals/dividend/
