Strasmore Research
Learn am Matt ConnorBy Matt Connor · Updated 2026-08-08 · data as of August 8, 2026 · refreshed weekly

Dividend Withholding Tax for Non-US Investors

US dividend withholding tax dey cut 30% at source before foreign account receive payout. See how valid W-8BEN treaty claim fit reduce the rate.

Dividend withholding tax na US tax wey dem deduct from dividend at source, before the cash reach non-US investor account. For US-source dividends wey dem pay to foreign holder, statutory rate na 30%. Treaty between US and the holder country of residence fit reduce that rate. To claim the lower rate, valid Form W-8BEN must dey on file with the broker. Wetin follow explain how the deduction work, plus the calculation for real payouts. Na general information about how the deduction work, no be tax advice.

How much US shares get for dividend withholding tax?

Dividend wey US company pay na US-source income. When beneficial owner na nonresident alien individual or foreign entity, withholding agent for the payment chain go deduct tax and send am to IRS, then account go receive wetin remain. Default rate na 30% of the gross amount. The main reference na IRS Publication 515, Withholding of Tax on Nonresident Aliens and Foreign Entities. Dem dey revise am every year, and e carry treaty table for each country.

The deduction no dey show inside the dividend figure wey company announce. Eight big US payers, based on their latest recurring quarterly payment wey dey on file:

QueryLatest quarterly dividend, gross and net after US withholding: eight big US payers
The exact SQL behind every number
SELECT ticker,
       round(toFloat64(argMax(cash_amount, ex_dividend_date)), 4) AS gross_dividend_usd,
       round(toFloat64(argMax(cash_amount, ex_dividend_date)) * 0.85, 4) AS net_at_15_pct_usd,
       round(toFloat64(argMax(cash_amount, ex_dividend_date)) * 0.70, 4) AS net_at_30_pct_usd,
       formatDateTime(max(ex_dividend_date), '%b %e, %Y') AS last_ex_dividend
FROM global_markets.stocks_dividends
WHERE ticker IN ('MCD', 'CVX', 'PEP', 'JNJ', 'PG', 'XOM', 'VZ', 'KO')
  AND distribution_type = 'recurring'
  AND frequency = 4
  AND cash_amount > 0
  AND ex_dividend_date <= today()
GROUP BY ticker
ORDER BY gross_dividend_usd DESC
Run this yourself

MCD declare the biggest gross payment among the eight, $1.86 per share, with ex-dividend date of Jun 2, 2026. Foreign holder wey no get treaty claim in place go receive $1.302. Holder wey get certification for 15% treaty rate go receive $1.581. For the other end of the panel, KO pay $0.53 gross and $0.371 after the statutory deduction.

The yield wey any screener quote dey come from the gross column. Dividend yield na pre-tax figure everywhere wey dem publish am. For foreign holder, the cash version dey one column to the right.

Wetín Form W-8BEN dey do

Form W-8BEN na certificate wey individual give broker, no be IRS. E dey confirm say the holder no be US person, show the country of residence and foreign tax identification number, plus claim the article and rate for the relevant treaty. Broker dey apply the treaty rate as payment dey happen. Entities dey use Form W-8BEN-E instead.

Four points about the form dey control the cash wey enter:

  • Signed form generally dey valid reach the end of the third full calendar year after the year wey person sign am. But e fit expire before then if the information for inside change. Move go another country na common example.
  • If valid form no dey on file, withholding agent go apply the full 30%.
  • US mailing address or US phone number wey attach to the account fit raise flag. E fit make payments enter backup withholding at 24% until person correct the paperwork.
  • Dem apply the rate when payment dey happen. If payment don already happen at 30%, broker no go later add money back.

Two treaty rates wey people dey quote often fit serve as examples. US treaty with United Kingdom and US treaty with Canada each set 15% on ordinary portfolio dividends for qualifying resident. Rates dey vary by country and by type of holder. Pension fund often dey get different treatment from individual. Treaties fit still get renegotiated. Table 1 of Publication 515 na where dem publish the current rate for a residence country, while the treaty text itself contain the eligibility conditions.

Withholding dey remove how much yield?

The proportion wey dem dey take fixed. But the number of percentage points wey e remove no fixed. US payers wey market value pass $1 billion for the latest snapshot on file, sorted into yield bands, with each band median yield shown gross and net:

QueryMedian dividend yield by band, gross and net after US withholding: US payers above $1B
The exact SQL behind every number
SELECT multiIf(dividend_yield * 100 >= 5, '5% and up',
               dividend_yield * 100 >= 3, '3-5%',
               dividend_yield * 100 >= 1.5, '1.5-3%',
               'under 1.5%') AS yield_band,
       count() AS payers,
       round(quantileDeterministic(0.5)(toFloat64(dividend_yield) * 100, cityHash64(ticker)), 2) AS gross_yield_pct,
       round(quantileDeterministic(0.5)(toFloat64(dividend_yield) * 100, cityHash64(ticker)) * 0.85, 2) AS net_yield_15_pct,
       round(quantileDeterministic(0.5)(toFloat64(dividend_yield) * 100, cityHash64(ticker)) * 0.70, 2) AS net_yield_30_pct,
       round(quantileDeterministic(0.5)(toFloat64(dividend_yield) * 100, cityHash64(ticker)) * 0.30, 2) AS withheld_points_30_pct
FROM global_markets.stocks_ratios
WHERE date = (SELECT max(date) FROM global_markets.stocks_ratios)
  AND price >= 5
  AND market_cap >= 1000000000
  AND dividend_yield > 0
GROUP BY yield_band
ORDER BY gross_yield_pct
Run this yourself

156 names dey for the top band, 5% and up, where median gross yield na 7%. For statutory rate, that same holding dey deliver 4.9% cash, while 2.1 percentage points dey go IRS. 15% treaty rate leave 5.95%. For under 1.5% band, that same deduction cost much less in absolute terms: 0.71% gross against 0.5% net.

As yield dey higher, the paperwork dey worth more cash. Approach wey dey collect plenty payments, like dividend capture, dey meet the deduction for every single one of dem.

One stock, payment by payment

Coca-Cola don raise im quarterly dividend every year for decades, so e dey give us clean record to follow. Every recurring payment since January 2021, gross and net for both rates:

QueryCoca-Cola quarterly dividend since 2021: gross, net at 15%, net at 30%
The exact SQL behind every number
SELECT ex_dividend_date,
       formatDateTime(ex_dividend_date, '%b %e, %Y') AS ex_date_label,
       round(toFloat64(cash_amount), 4) AS gross_per_share_usd,
       round(toFloat64(cash_amount) * 0.85, 4) AS net_at_15_pct_usd,
       round(toFloat64(cash_amount) * 0.70, 4) AS net_at_30_pct_usd,
       round(toFloat64(cash_amount) * 0.30, 4) AS withheld_at_30_pct_usd
FROM global_markets.stocks_dividends
WHERE ticker = 'KO'
  AND distribution_type = 'recurring'
  AND frequency = 4
  AND cash_amount > 0
  AND ex_dividend_date >= toDate('2021-01-01')
  AND ex_dividend_date <= today()
ORDER BY ex_dividend_date
Run this yourself

The gross payment rise from $0.42 on Mar 12, 2021 reach $0.53 on Jun 15, 2026, across 22 payments. The net-of-30% column move with am, as $0.294 rise reach $0.371. The withheld column grow together with the raises, reaching $0.159 per share for the latest payment, compared with $0.4505 wey dem keep under 15% treaty claim.

To check statement, na one-line arithmetic: take the gross per-share amount, multiply am by the shares wey you hold on the ex-dividend date, then compare am with the cash wey dem credit. If the result land for the 30% column when you expect treaty rate, na usually paperwork matter, no be dividend matter.

ETFs and ADRs dey add another layer?

Yes, dem dey do am for two different ways.

Distribution from fund wey list and domicile for US na US-source payment by itself, so foreign holder still face the same withholding on am. Under the wrapper, the fund don already pay foreign withholding on any non-US stocks wey e hold before e distribute anything. End investor generally no fit reclaim that fund-level tax. Six broad US funds, trailing twelve months distributions against the latest price:

QuerySix broad US funds: trailing-year distribution yield, gross and net after withholding
The exact SQL behind every number
WITH px AS (
    SELECT ticker, argMax(close, window_start) AS price
    FROM global_markets.delayed_stocks_minute_aggs
    WHERE ticker IN ('SPY', 'VOO', 'VTI', 'QQQ', 'SCHD', 'VYM')
      AND window_start >= now() - INTERVAL 7 DAY
      AND (toHour(toTimeZone(window_start, 'America/New_York')) * 60
           + toMinute(toTimeZone(window_start, 'America/New_York'))) BETWEEN 570 AND 959
    GROUP BY ticker
),
dv AS (
    SELECT ticker,
           sum(cash_amount) AS ttm_distributions,
           count() AS payments
    FROM global_markets.stocks_dividends
    WHERE ticker IN ('SPY', 'VOO', 'VTI', 'QQQ', 'SCHD', 'VYM')
      AND ex_dividend_date > today() - INTERVAL 1 YEAR
      AND ex_dividend_date <= today()
      AND cash_amount > 0
    GROUP BY ticker
)
SELECT px.ticker AS ticker,
       round(px.price, 2) AS price,
       round(toFloat64(dv.ttm_distributions), 3) AS ttm_distributions_usd,
       dv.payments AS payments,
       round(toFloat64(dv.ttm_distributions) / toFloat64(px.price) * 100, 2) AS gross_yield_pct,
       round(toFloat64(dv.ttm_distributions) / toFloat64(px.price) * 100 * 0.85, 2) AS net_yield_15_pct,
       round(toFloat64(dv.ttm_distributions) / toFloat64(px.price) * 100 * 0.70, 2) AS net_yield_30_pct
FROM px
INNER JOIN dv ON px.ticker = dv.ticker
ORDER BY gross_yield_pct DESC
Run this yourself

SCHD distribute $1.048 per share over the trailing year against price of $33.9, giving gross distribution yield of 3.09%. At the statutory rate, cash yield na 2.16%. For the fund wey dey the low end of the group, QQQ distribute 0.42% gross and 0.29% net. Difference between the gross yields of two funds, wey SCHD vs VOO explain for one such pair, dey widen for cash terms after withholding apply to both.

American depositary receipt na US-listed certificate wey represent shares for foreign company. The company home country first withhold tax at its own rate. Then depositary bank charge separate pass-through fee before the remaining cash reach the holder. For non-US holder, dividend behind an ADR no be US-source income, so 30% US rate no be the one wey apply. The home-country deduction and the depositary fee na.

US withholding and tax for your country na the same thing?

No. The 30% or treaty rate na US tax on US-source income. The country wey investor dey resident for go tax that same dividend under its own rules, either on the gross amount or net amount, depending on how the system work. Most tax systems reduce the overlap with foreign tax credit. But dem commonly cap that credit at the treaty rate, no be the 30% statutory rate. If dem withhold 30% from a holder wey no get valid W-8BEN, the extra points fit no qualify for credit for home country. To recover am, the holder need file US refund claim with Form 1040-NR. This area depend on the jurisdiction, so local tax professional na the correct person to interpret am.

Withholding still change wetin long-run chart mean for foreign account. Price return versus total return dey compound gross dividends, but the path wey non-US holder actually receive dey compound the net amount.

Dividend withholding tax FAQ

Non-US investors dey pay US tax on US dividends?

Yes. US-source dividends wey dem pay to nonresident alien or foreign entity get US withholding at source. Statutory rate na 30%, unless tax treaty rate apply. Dem go remove the tax before payment reach the account.

Wetin be US dividend withholding rate when tax treaty dey?

E depend on the treaty and the holder. US treaties with United Kingdom and Canada each set 15% on ordinary portfolio dividends for qualifying resident. Table 1 of IRS Publication 515 list the current rate by country. Rates fit change when dem renegotiate treaties.

W-8BEN dey reduce withholding automatically?

Only after broker hold valid form with complete treaty claim. The claim must include residence country and tax identification number. Dem apply the reduced rate when payment happen. If dem don already tax payment at 30%, person need recover am through US refund claim. Filing the form later no go reverse am automatically.

Capital gains dey face withholding the same way as dividends?

Generally, no. Nonresident alien normally dey outside US tax on gains from selling US stock, while dem withhold dividends at source. Country of residence still tax the gain under its own rules. Separate US rules cover US real property interests and people wey dey present for 183 days or more within one year.

Withholding dey apply to ETF distributions?

Distribution from US-domiciled fund na US-source payment, so foreign holder face the same withholding on am. The fund fit don pay foreign withholding inside the wrapper on its non-US holdings before e distribute the money. End investor generally no fit reclaim that inner layer.


Every figure wey dey above come from stored, versioned query on filed dividend records and real prices. Open any panel to read the SQL, or run the same net-of-withholding calculation against a watchlist for Strasmore terminal.

#dividends#withholding tax#w-8ben#tax treaties#international investors