wealthschemaresourcesarticlesInternational clients and US expats — FBAR, FATCA, and the wealth-tech blind spot for cross-border households
Article

International clients and US expats — FBAR, FATCA, and the wealth-tech blind spot for cross-border households

A US citizen living in London with a UK pension and a Swiss brokerage account has a tax-filing footprint most wealth-tech platforms don't recognize exists. The data model gap is structural; the planning value is meaningful.

WealthSchema StaffInternational tax & cross-border modelingMay 8, 20266 min read

International clients and US expats represent a niche segment that mainstream wealth-tech platforms typically don't model well. The tax-filing surface — FBAR, FATCA, foreign earned income exclusion, foreign tax credit, PFIC reporting, treaty applicability — extends far beyond what a domestic-only platform's data model accommodates. The result: international clients use either a specialty international firm or a patchwork of domestic platforms plus separate cross-border tax preparers.

For platforms with international growth ambitions or with US-citizen client bases that include expats, the niche is worth modeling. Done well, it produces differentiation in a segment that's structurally underserved.

This article is the working note on the data model and the decision-logic surfaces required.

The reporting obligations

US citizens and US tax residents have worldwide tax-filing obligations regardless of where they live. The reporting infrastructure includes:

  • FBAR (Report of Foreign Bank and Financial Accounts, FinCEN Form 114): required if aggregate foreign financial accounts exceed $10,000 at any time during the year. Filed with FinCEN, separately from the income tax return. Penalties for failure to file are severe (willful: $100K+ or 50% of account balance; non-willful: $10K per violation).

  • FATCA (Form 8938, Statement of Specified Foreign Financial Assets): required if foreign financial assets exceed certain thresholds ($50K-$600K depending on filing status and location). Filed with the income tax return. Penalties: $10K minimum, up to $50K for continued failure.

  • PFIC reporting (Form 8621): required for shareholders of passive foreign investment companies. Filing per PFIC per year is the norm. The QEF election and mark-to-market election are the two structuring options that affect tax treatment.

  • Foreign Trust reporting (Form 3520, 3520-A): required for US persons with interests in foreign trusts. Even a UK pension can be a "foreign trust" for US tax purposes; the reporting obligations can apply unexpectedly.

  • Foreign corporation reporting (Form 5471): required for US persons who own 10%+ of a foreign corporation. Common for US founders with international holding structures.

The data model implications:

interface InternationalReportingProfile {
  citizenship_status: 'us_citizen' | 'green_card' | 'us_resident_alien' | 'non_resident_alien';
  tax_residency: USState | ForeignCountry;
  
  // For FBAR / FATCA
  foreign_financial_accounts: ForeignAccount[];
  
  // For PFIC
  pfic_holdings: PFICHolding[];
  
  // For foreign trust
  foreign_trust_interests: ForeignTrustInterest[];
  
  // For foreign corporation
  foreign_corporation_interests: ForeignCorporationInterest[];
  
  // Income / tax credit fields
  foreign_earned_income: ForeignEarnedIncome[];
  foreign_taxes_paid: ForeignTaxRecord[];
  
  // Treaty applicability
  applicable_treaties: TaxTreaty[];
  treaty_positions_taken: TreatyPosition[];
}

interface ForeignAccount {
  account_id: string;
  institution_name: string;
  institution_country: string;
  account_type: 'bank' | 'brokerage' | 'pension' | 'insurance' | 'other';
  
  account_currency: string;
  max_value_during_year_usd: number; // For FBAR threshold
  year_end_value_usd: number;
  
  // For FATCA
  fatca_reporting_required: boolean;
  
  // For pension-as-trust analysis
  treated_as_foreign_trust: boolean;
  
  signature_authority_only: boolean; // FBAR distinction
}

The treated_as_foreign_trust field is consequential. UK pensions, certain employer-sponsored retirement vehicles in non-US countries, and several other common foreign-account types are treated as foreign trusts for US reporting purposes. Many expats have these and don't know they trigger Form 3520 obligations.

The PFIC trap

The Passive Foreign Investment Company classification catches US persons who hold non-US mutual funds, ETFs, or similar pooled-investment vehicles. Most non-US fund vehicles are PFICs.

Default PFIC tax treatment is severe — distributions and gains are taxed at the highest ordinary-income rate plus interest charges on the deferred portion. This makes default PFIC treatment substantially worse than US fund equivalents.

The QEF (Qualified Electing Fund) election treats the PFIC like a US partnership — the US holder includes their share of the fund's income annually. The election requires the fund's cooperation in providing the necessary tax information; many non-US funds don't provide it.

The mark-to-market election treats the PFIC like a publicly-traded security — the US holder includes the year-over-year change in market value as ordinary income. Available only for certain marketable PFICs.

For a US citizen abroad investing in local funds, the PFIC trap is unavoidable without active structuring. The platform should surface the trap explicitly, identify any holdings that trigger it, and recommend either avoidance (US-domiciled funds purchased through international-friendly brokers) or structuring (QEF / MTM elections, holding through trust structures).

The Foreign Earned Income Exclusion

For US citizens and resident aliens working abroad, the FEIE (§911) excludes up to ~$130K of foreign earned income from US tax (2026 amount, indexed annually). The exclusion is per-spouse if both work abroad.

The exclusion has structural requirements: bona fide foreign residence or physical presence test (330 days outside the US in any 12-month period). Documentation of the test is required.

For wealth-tech platforms serving US expats, FEIE optimization is a routine surface. The platform should:

  • Track day-count for the physical presence test
  • Surface the exclusion amount and its impact on tax projection
  • Optimize between FEIE and Foreign Tax Credit for borderline cases (FEIE is better when foreign tax rate is low; FTC is better when foreign tax rate is high)
  • Handle the housing-cost exclusion (an additional FEIE component for housing costs above a base amount)

The Foreign Tax Credit

The FTC (§901) credits US tax for foreign taxes paid on foreign-source income. The credit is dollar-for-dollar but limited by US-tax-on-foreign-income-as-a-percentage-of-US-taxable-income.

For US persons in high-tax foreign jurisdictions (Germany, France, Sweden), FTC alone often eliminates US tax entirely on foreign income. For US persons in low-tax jurisdictions (UAE, Bahrain, Hong Kong), FTC alone leaves substantial US tax due, and FEIE is the better tool.

The platform's optimization should compare FEIE and FTC outcomes for each year's situation and recommend the optimal election.

Treaty applicability

US tax treaties with various countries override certain default tax rules. Common treaty provisions:

  • Reduced withholding rates on dividends, interest, royalties
  • Tie-breaker rules for residency disputes
  • Special rules for pensions, social security, government services income
  • Limited "saving clause" exceptions that preserve US taxation of US citizens

The platform should know the applicable treaty and surface relevant provisions. For a US citizen in the UK, the US-UK treaty's pension provisions are routinely relevant; not surfacing them is a planning gap.

What the test corpus needs

A test corpus for international / expat modeling needs:

  • US citizens currently living abroad (full international filing)
  • US citizens with foreign assets but US residence (partial international filing)
  • Green-card holders abroad (special considerations)
  • US persons with foreign trust interests (often unrecognized — UK pensions, super-annuation, etc.)
  • US persons with PFIC holdings (the trap surface)
  • US persons in high-tax vs. low-tax foreign jurisdictions (FEIE vs. FTC optimization)
  • Expats in various stages of physical-presence-test compliance
  • Returning expats (re-establishing US tax residency)
  • Mixed-status couples (US citizen married to non-US citizen)

Each scenario has structurally different reporting obligations and optimization surfaces.

The compliance overhead burden

International clients have higher compliance overhead than domestic-only clients. The wealth-tech platform should help, not add to, the burden:

  • Pre-fill foreign-account reporting forms from the platform's data
  • Surface filing deadlines (FBAR is April 15 with automatic October 15 extension; aligned with income tax)
  • Track which forms have been filed each year
  • Flag year-over-year inconsistencies that suggest missed filings

Without these, the platform becomes another source of work for the international client. With them, the platform reduces the friction that drove international clients to specialty firms in the first place.

The platform value

Wealth-tech platforms that handle international and expat populations as a first-class surface differentiate sharply in segments where domestic platforms fail. The segments include US executives in international assignments, US founders with international structures, US dual citizens, and the growing US-citizen-abroad population (estimated 9 million worldwide).

The investment is real — the data model is richer, the regulatory surface broader, the integrations require non-US data sources. But the segment is durable and concentrated in high-net-worth populations where AUM economics support the engineering investment.

Key takeaways

  • International and expat clients face FBAR, FATCA, PFIC, foreign trust, and foreign corporation reporting that domestic-only wealth-tech platforms don't model. The compliance burden falls back on the client without platform support.
  • PFICs are the most consequential trap. Most non-US pooled-investment vehicles are PFICs; default tax treatment is severe; the platform should identify holdings and recommend avoidance or structuring.
  • Foreign retirement vehicles (UK pensions, super-annuation, certain employer-sponsored plans) are often treated as foreign trusts for US reporting, triggering Form 3520 obligations many expats don't know about.
  • The FEIE-vs-FTC optimization is annual and situation-dependent. High-tax-jurisdiction expats benefit from FTC; low-tax-jurisdiction expats from FEIE; the platform should surface the choice each year.
  • International clients are concentrated in high-net-worth populations. Platforms that handle the surface well capture a structurally underserved segment with durable retention economics.

International and expat wealth-tech is one of the durable niches where mainstream platforms underperform. The segment has growing addressable size (the US expat population continues to expand), high net-worth concentration, and structural complexity that justifies platform investment. Platforms that take the niche seriously become the natural home for the population.