STRASMORE/EXPLORE 2,170 QUERIES

Every AAPL dividend year, as declared and split adjusted

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-22, from AAPL Dividend History: Splits and Raises.

as of ranking 15×4read in context →
Every AAPL dividend year, as declared and split adjusted — 15 rows by 4 columns, computed from US exchange, SIP and OPRA data.
yeardeclared_per_sharesplit_adjusted_per_sharepayment_count
20125.30.1892862
201311.80.421434
20147.280.4614294
20152.030.50754
20162.230.55754
20172.460.6154
20182.820.7054
20193.040.764
20202.6150.80754
20210.8650.8654
20220.910.914
20230.950.954
20240.990.994
20251.031.034
20260.80.83
Rows × columns
15 × 4
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 Every AAPL dividend year, as declared and split adjusted, derived from the stored result.
ColumnTypeRangeNotes
year text 15 distinct values (2012, 2013, 2014…)
declared_per_share number 0.8 to 11.8
split_adjusted_per_share number 0.1893 to 1.03
payment_count number 2 to 4 count

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
WITH payouts AS
(
    SELECT
        id,
        any(ex_dividend_date)           AS ex_date,
        any(cash_amount)                AS declared,
        any(split_adjusted_cash_amount) AS adjusted
    FROM global_markets.stocks_dividends
    WHERE ticker = 'AAPL'
      AND ex_dividend_date <= today()
    GROUP BY id
)
SELECT
    toString(toYear(ex_date))          AS year,
    round(toFloat64(sum(declared)), 4) AS declared_per_share,
    round(toFloat64(sum(adjusted)), 6) AS split_adjusted_per_share,
    count()                            AS payment_count
FROM payouts
GROUP BY year
ORDER BY year

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 analysisAAPL Dividend History: Splits and Raises
AAPL quarterly dividend by year, split adjusted, with the annual step ranking 14×3 AAPL dividends paid against free cash flow, by fiscal year ranking 13×4 Longest gaps between consecutive AAPL dividend payments, in years ranking 6×4 Every AAPL stock split and the running share count series 3×5 How a two-decade streak compounds: Microsoft's annual dividend, year by year ranking 22×2 Verizon (VZ) dividends per share by calendar year, 2005 to 2025 ranking 21×4 See all 2,170 queries →