STRASMORE/EXPLORE 2,433 QUERIES

spy_dividends

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-09-20, from what-is-spy-etf.

as of series 9×4read in context →
spy_dividends — 9 rows by 4 columns, computed from US exchange, SIP and OPRA data.
dividend_dateex_date_labelpay_date_isocash_per_share
2024-09-20September 20, 20242024-10-311.7455
2024-12-20December 20, 20242025-01-311.9655
2025-03-21March 21, 20252025-04-301.6955
2025-06-20June 20, 20252025-07-311.7611
2025-09-19September 19, 20252025-10-311.8311
2025-12-19December 19, 20252026-01-301.9934
2026-03-20March 20, 20262026-04-301.797
2026-06-18June 18, 20262026-07-311.9035
2026-09-18September 18, 20262026-10-301.8888
Rows × columns
9 × 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 spy_dividends, derived from the stored result.
ColumnTypeRangeNotes
dividend_date date 2024-09-20 to 2026-09-18
ex_date_label text 9 distinct values
pay_date_iso date 2024-10-31 to 2026-10-30
cash_per_share number 1.6955 to 1.9934

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.

Run it yourself

This is the exact query behind the result above. Change a ticker, a date or a column and run it against the warehouse — no account, no key. The no-signup tier is smaller than the one this page was computed on; a query that reaches past it comes back saying which plan runs it.

SELECT
    toString(ex_dividend_date)                                                                                                        AS dividend_date,
    concat(monthName(ex_dividend_date), ' ', toString(toDayOfMonth(ex_dividend_date)), ', ', toString(toYear(ex_dividend_date)))     AS ex_date_label,
    toString(any(pay_date))                                                                                                           AS pay_date_iso,
    round(toFloat64(any(cash_amount)), 4)                                                                                             AS cash_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'SPY'
  AND ex_dividend_date <= today()
  AND ex_dividend_date >  today() - 740
GROUP BY ex_dividend_date
ORDER BY ex_dividend_date
⌘/Ctrl + Enter