Strasmore Research
Learn Matt ConnorBy Matt Connor · data as of August 4, 2026 · refreshed weekly

Dividend Withholding Tax for Non-US Investors

Dividend withholding tax takes a cut at source, before US payouts reach a foreign account. See the 30% rate and what a valid W-8BEN treaty claim changes.

Dividend withholding tax is the US tax deducted from a dividend at source, before the cash ever reaches a non-US investor's account. On US-source dividends paid to a foreign holder the statutory rate is 30%. A treaty between the US and the holder's country of residence can lower that rate, and claiming the lower rate requires a valid Form W-8BEN on file with the broker. What follows is the mechanism plus the arithmetic on real payouts. It is general information about how the deduction works, not tax advice.

How much is the dividend withholding tax on US shares?

A dividend from a US company is US-source income. When the beneficial owner is a nonresident alien individual or a foreign entity, the withholding agent in the payment chain deducts tax and remits it to the IRS, and the account receives what is left. The default rate is 30% of the gross amount. The governing reference is IRS Publication 515, Withholding of Tax on Nonresident Aliens and Foreign Entities, revised each year, which carries the per-country treaty table.

None of that deduction appears in the dividend figure a company announces. Eight large US payers, at their latest recurring quarterly payment on file:

QueryLatest quarterly dividend, gross and net of US withholding: eight large 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 declared the largest gross payment of the eight, $1.86 a share, with an ex-dividend date of Jun 2, 2026. A foreign holder with no treaty claim in place receives $1.302 of it. A holder certified at a 15% treaty rate receives $1.581. At the other end of the panel, KO pays $0.53 gross and $0.371 after the statutory deduction.

The yield quoted on any screener is built from the gross column. Dividend yield is a pre-tax number everywhere it is published, and for a foreign holder the cash version of it sits one column to the right.

What Form W-8BEN does

Form W-8BEN is a certificate an individual gives to the broker rather than to the IRS. It states that the holder is not a US person, names the country of residence and the foreign tax identification number, and claims the article and rate of the relevant treaty. The broker applies the treaty rate at the moment of payment. Entities use Form W-8BEN-E instead.

Four points about the form govern the cash that lands:

  • A signed form is generally valid through the third full calendar year after the year of signature, and it lapses earlier if the facts on it change, a move to another country being the common case.
  • With no valid form on file, the withholding agent applies the full 30%.
  • A US mailing address or US phone number attached to the account is a flag that can pull payments into backup withholding at 24% until the paperwork is cured.
  • The rate is applied at payment time. A payment already made at 30% is not topped up by the broker afterwards.

Two widely quoted treaty rates work as illustrations: the US treaty with the United Kingdom and the US treaty with Canada each set 15% on ordinary portfolio dividends for a qualifying resident. Rates vary by country and by the type of holder, and a pension fund is often treated differently from an individual. Treaties also get renegotiated. Table 1 of Publication 515 is where the current rate for a residence country is published, and the eligibility conditions live in the treaty text itself.

How much yield does withholding remove?

The proportion taken is fixed. The number of percentage points it removes is not. US payers above $1 billion in market value at the latest snapshot on file, sorted into yield bands, with each band's median yield shown gross and net:

QueryMedian dividend yield by band, gross and net of US withholding: US payers over $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

154 names sit in the top band, 5% and up, where the median gross yield is 7.34%. At the statutory rate that same holding delivers 5.14% in cash, with 2.2 percentage points going to the IRS. A 15% treaty rate leaves 6.24%. In the under 1.5% band the same deduction costs far less in absolute terms: 0.69% gross against 0.48% net.

The higher the yield, the more the paperwork is worth in cash. An approach that collects many payments, such as dividend capture, meets the deduction on every single one of them.

One stock, payment by payment

Coca-Cola has raised its quarterly dividend every year for decades, which makes it a clean trace to read. Every recurring payment since January 2021, gross and net at 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 went from $0.42 on Mar 12, 2021 to $0.53 on Jun 15, 2026, across 22 payments. The net-of-30% column moved with it, $0.294 rising to $0.371. The withheld column grew alongside the raises, reaching $0.159 a share at the latest payment, against $0.4505 kept under a 15% treaty claim.

Checking a statement takes one line of arithmetic: take the gross per-share amount, multiply by the shares held on the ex-dividend date, and compare with the cash credited. Landing on the 30% column when a treaty rate was expected is usually a paperwork question rather than a dividend question.

Do ETFs and ADRs add another layer?

Yes, in two different ways.

A distribution from a US-listed, US-domiciled fund is itself a US-source payment, so a foreign holder meets the same withholding on it. Underneath the wrapper, the fund has already paid foreign withholding on any non-US stocks it holds before distributing anything, and an end investor generally cannot reclaim that fund-level tax. Six broad US funds, trailing twelve months of distributions against the latest price:

QuerySix broad US funds: trailing-year distribution yield, gross and net of 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 distributed $1.048 a share over the trailing year against a price of $33.57, a gross distribution yield of 3.12%. At the statutory rate the cash yield is 2.19%. At the low end of the group, QQQ distributes 0.43% gross and 0.3% net. The gap between two funds' gross yields, which SCHD vs VOO walks through for one such pair, widens in cash terms once withholding is applied to both.

An American depositary receipt is a US-listed certificate representing shares in a foreign company. The home country of that company withholds at its own rate first, and the depositary bank charges a separate pass-through fee before the remaining cash reaches the holder. For a non-US holder the dividend behind an ADR is not US-source income, so the 30% US rate is not the operative one. The home-country deduction and the depositary fee are.

Is US withholding the same as tax at home?

No. The 30% or treaty rate is a US tax on US-source income. The country where the investor is resident taxes the same dividend under its own rules, on the gross or on the net figure depending on the system. Most systems relieve the overlap with a foreign tax credit, and that credit is commonly capped at the treaty rate rather than at the 30% statutory rate. A holder withheld at 30% without a valid W-8BEN can find the extra points are not creditable at home, and recovering them means a US refund claim on Form 1040-NR. This part is jurisdiction-specific, and a local tax professional is the right reader of it.

Withholding also changes what a long-run chart means for a foreign account. Price return vs total return compounds gross dividends, while the path a non-US holder actually banks compounds the net column.

Dividend withholding tax FAQ

Do non-US investors pay US tax on US dividends?

Yes. US-source dividends paid to a nonresident alien or a foreign entity carry US withholding at source, at a statutory 30% unless a treaty rate applies. The tax comes out before the payment reaches the account.

What is the US dividend withholding rate with a tax treaty?

It depends on the treaty and on the holder. The US treaties with the United Kingdom and with Canada each set 15% on ordinary portfolio dividends for a qualifying resident. Table 1 of IRS Publication 515 lists the current rate by country, and rates move as treaties are renegotiated.

Does a W-8BEN reduce withholding automatically?

Only once the broker holds a valid form with a complete treaty claim, including the residence country and a tax identification number. The reduced rate is applied at payment time, and a payment already taxed at 30% is recovered through a US refund claim rather than by filing the form later.

Are capital gains withheld the same way as dividends?

Generally no. A nonresident alien is usually outside US tax on gains from selling US stock, while dividends are withheld at source. The country of residence still taxes the gain under its own rules, and separate US rules cover US real property interests and individuals present in the US for 183 days or more in a year.

Does withholding apply to ETF distributions?

A distribution from a US-domiciled fund is a US-source payment, so a foreign holder meets the same withholding on it. The fund may also have paid foreign withholding inside the wrapper on its non-US holdings before distributing, and that inner layer is generally not reclaimable by the end investor.


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

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