STRASMORE/EXPLORE 2,170 QUERIES

Eight quarterly declarations, ex-date and pay date

Answered against 22 years of US equities and 12 years of US options data and published with the query that produced it. This result is stored as of 2026-08-14, from How Annual Dividend Per Share Is Calculated.

as of series 8×4read in context →
Eight quarterly declarations, ex-date and pay date — 8 rows by 4 columns, computed from US exchange, SIP and OPRA data.
ex_dateex_date_labelpay_date_labelamount_per_share
2024-08-12Aug 12, 2024Aug 15, 20240.25
2024-11-08Nov 8, 2024Nov 14, 20240.25
2025-02-10Feb 10, 2025Feb 13, 20250.25
2025-05-12May 12, 2025May 15, 20250.26
2025-08-11Aug 11, 2025Aug 14, 20250.26
2025-11-10Nov 10, 2025Nov 13, 20250.26
2026-02-09Feb 9, 2026Feb 12, 20260.26
2026-05-11May 11, 2026May 14, 20260.27
Rows × columns
8 × 4
Period covered
to
Computed
Completeness
No missing values
Source
US exchange, SIP and OPRA market data
Licence
Strasmore terms · free, no signup
Formats
JSON · CSV · the SQL below

What each column holds

Column definitions for Eight quarterly declarations, ex-date and pay date, derived from the stored result.
ColumnTypeRangeNotes
ex_date date 2024-08-12 to 2026-05-11
ex_date_label text 8 distinct values (Aug 11, 2025, Aug 12, 2024, Feb 10, 2025…)
pay_date_label text 8 distinct values (Aug 14, 2025, Aug 15, 2024, Feb 12, 2026…)
amount_per_share number 0.25 to 0.27

Computed from Strasmore's warehouse of US exchange, SIP and OPRA market data. Equity prices are delayed; options greeks and implied volatility are end-of-day. This result is stored, not recomputed on load — it is exactly the numbers that were returned on , and the query below is what returned them.

the exact SQL behind every number
SELECT
    toString(ex_dividend_date)                     AS ex_date,
    formatDateTime(ex_dividend_date, '%b %e, %Y')  AS ex_date_label,
    formatDateTime(max(pay_date), '%b %e, %Y')     AS pay_date_label,
    round(max(toFloat64(cash_amount)), 4)          AS amount_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'AAPL'
  AND ex_dividend_date >= '2024-07-01'
  AND ex_dividend_date <  '2026-07-01'
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date

Run your own version of this

The same 22 years of US equities and 12 years of options data are queryable in SQL or plain English. A free account runs 100 queries a day and takes no card.

More from this analysisHow Annual Dividend Per Share Is Calculated
Declared amount against split-restated amount, per quarter series 56×4 Trailing four payments against the indicated rate, by quarter series 16×4 Ex-date to pay date across US cash dividends, by year ranking 7×4 One set of payments, four annual dividend totals ranking 4×3 Days between declaration, ex-date, record and payable series 16×5 Thirteen big dividend and income funds: last ex-date, cadence, and the implied next ex-date series 13×8 See all 2,170 queries →