META Dividend: Yield, History & Ex-Dates
META dividend guide: current yield, per-share payout, full ex-dividend date history, and payout frequency, refreshed weekly from the exchange record.
Meta Platforms (META) dey pay quarterly dividend. As of im most recent declaration, META pay $0.525 per share, wey be annual rate of $2.1, and e give dividend yield of about 0.33% at recent price of $640.16. Im most recent ex-dividend date bin reach Jun 15, 2026, and the next one go be not yet declared. This page dey track META dividend, dem dey refresh am every week from the exchange record.
The exact SQL behind every number
WITH d AS (
SELECT argMax(cash_amount, ex_dividend_date) AS latest,
argMax(frequency, ex_dividend_date) AS freq,
max(ex_dividend_date) AS last_ex,
maxIf(ex_dividend_date, ex_dividend_date > today()) AS nxt
FROM global_markets.stocks_dividends
WHERE ticker = 'META' AND frequency IN (1, 2, 4, 12) AND ex_dividend_date >= today() - 900
),
p AS (
SELECT argMax(toFloat64(close), window_start) AS price
FROM global_markets.delayed_stocks_minute_aggs
WHERE ticker = 'META' AND window_start >= now() - INTERVAL 8 DAY
)
SELECT round(d.latest, 3) AS latest_dividend,
multiIf(d.freq = 12, 'monthly', d.freq = 4, 'quarterly', d.freq = 2, 'semi-annual', 'annual') AS frequency,
round(d.latest * d.freq, 2) AS annual_dividend,
round(p.price, 2) AS recent_price,
round(d.latest * d.freq / p.price * 100, 2) AS dividend_yield_pct,
formatDateTime(d.last_ex, '%b %e, %Y') AS last_ex_date,
if(d.nxt > today(), formatDateTime(d.nxt, '%b %e, %Y'), 'not yet declared') AS next_ex_date
FROM d CROSS JOIN pMETA dividend yield and payout
To collect dividend, you gatz own the shares before the ex-dividend date. The META dividend yield wey dey above na the annual rate divided by the recent price; e dey move opposite to the share price, so one yield figure no mean anything unless you get the date dem take measure am. The per-share amounts wey dey here na the cash dividends wey dem declare, e no include any special or one-time distributions.
META dividend history
The most recent regular dividends wey META don pay, newest one first:
The exact SQL behind every number
SELECT toDate(ex_dividend_date) AS date,
round(cash_amount, 4) AS dividend_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'META' AND frequency IN (1, 2, 4, 12) AND ex_dividend_date >= today() - 1100
ORDER BY ex_dividend_date DESC
LIMIT 10The way the payments dey show na the schedule: one quarterly payer dey send check that way, and the per-share amount na wetin dey increase (or hold, or dem cut am) as time dey go.
META dividend growth by year
If you add up the regular dividends inside each calendar year, you go turn the individual payments into one growth picture.
The exact SQL behind every number
SELECT toString(toYear(ex_dividend_date)) AS year,
round(sum(cash_amount), 2) AS dividends_paid_per_share
FROM global_markets.stocks_dividends
WHERE ticker = 'META' AND frequency IN (1, 2, 4, 12)
AND ex_dividend_date >= toDate('2019-01-01') AND ex_dividend_date < toDate(concat(toString(toYear(today())), '-01-01'))
GROUP BY year
ORDER BY yearFor 2024, META pay $2 per share across the year; by 2025 the annual total don reach $2.1. Line wey dey rise na company wey dey lift im payout year after year; flat line mean dem hold the dividend; if e fall, na cut. The year-by-year record na the single most useful thing to check before you treat any stock as income holding, and na the part of dividend wey one screener single yield number dey hide.
META good dividend stock?
Two numbers dey frame that question, and both of dem dey on this page: the yield (0.33%) and the direction of the annual payout wey dey above. Yield wey dey below broad-market average plus payout wey dey rise steady na the profile of dividend-growth name, where the appeal na small check today wey dey compound. High yield next to flat or falling payout na income-now profile, and e need close look whether earnings dey cover the payment. META record wey dey above dey show which of the two e resemble. Wetin dividend history no fit show on im own na safety: that one dey on earnings and free cash flow, no be on the run of past payments, so stretched payout ratio fit happen before cut wey the history never record.
When META ex-dividend date go reach?
The ex-dividend date na the cutoff: buy META before am and the upcoming dividend go be yours, buy am on that day and the dividend go go the seller. On the ex-date the stock go open lower by roughly the dividend amount, because the cash dey comot from the company. META most recent ex-dividend date bin reach Jun 15, 2026. The record date dey follow one business day later under T+1 settlement, and the pay date go come some weeks after that. Upcoming ex-dates across the market dey on the ex-dividend calendar.
FAQ
Meta Platforms dey pay dividend?
Yes. META dey pay quarterly dividend, most recently $0.525 per share, wey annualize to about $2.1 per share.
Wetin be META dividend yield?
META dividend yield dey about 0.33%, dem calculate am as the $2.1 annual dividend divided by recent price of $640.16. Yield dey rise as price dey fall and vice versa, so na snapshot, no be fixed number.
When META next ex-dividend date go reach?
META most recent ex-dividend date bin reach Jun 15, 2026, and the next one go be not yet declared. As quarterly payer, META dey set new ex-date that way; date go show as declared here once the company announce am.
How much META dividend be?
The most recent regular dividend bin be $0.525 per share. At quarterly cadence, e go annualize to about $2.1 per share.
Every figure wey dey above na stored, inspectable query, dem dey refresh am every week. Open the SQL under any panel to audit am, or pull any ticker dividend record for the Strasmore terminal.