Home / VAT Rates / Switzerland

Switzerland VAT Rates 2026

Switzerland (Schweiz / Suisse / Svizzera) levies Value Added Tax as MWST / TVA / IVA. The standard rate is 8.1%, applied to most goods and services. Reduced rates of 2.6% and 3.8% apply to food, non-alcoholic beverages, books, newspapers, medicines.

Rate update

Switzerland raised its MWST/TVA/IVA rates in January 2024: standard from 7.7% to 8.1%, reduced from 2.5% to 2.6%, accommodation from 3.7% to 3.8%. Switzerland is not an EU member.

Current rates — 2026

TypeRateApplies to
Standard8.1%Most goods and services
Reduced2.6%Food, non-alcoholic beverages, books, newspapers, medicines
Reduced3.8%Hotel accommodation and bed-and-breakfast
Zero-rated0%Exports and services supplied abroad

Registration and filing

Registration thresholdCHF 100,000Global turnover test — foreign businesses count worldwide revenue, not just Swiss sales
Tax authorityEidgenössische Steuerverwaltung (ESTV / FTA)
Filing frequencyQuarterly returns; annual filing option introduced in 2025 for small businesses

Access rates via API

The TaxID API returns current VAT and GST rates for 200+ countries and territories. Use the /api/v1/rates/CH endpoint to get Switzerland data programmatically. Responses are cached for 24 hours.

bash
curl http://localhost:3000/api/v1/rates/CH
# No authentication required for rate lookups

# Response:
# { "country_code": "CH", "tax_type": "vat",
#   "standard_rate": 8.1, "reduced_rates": [2.6, 3.8],
#   "currency": "CHF", "last_updated": "2026-01-01" }

Applying the correct rate in code

For B2B sales to Switzerland, validate the customer's MWST/TVA/IVA first — a verified registration is typically required for correct invoicing and zero-rated exports. For B2C, charge the Switzerland VAT rate where registration rules require it.

Node.js
// 1. Validate the customer's Switzerland tax ID
const check = await fetch(
  'http://localhost:3000/api/v1/validate/CH/CUSTOMER_TAX_ID',
  { headers: { Authorization: 'Bearer YOUR_API_KEY' } }
).then(r => r.json());

// 2. Fetch current Switzerland VAT rates (no auth required)
const rates = await fetch('http://localhost:3000/api/v1/rates/CH').then(r => r.json());
// → { standard_rate: 8.1, reduced_rates: [2.6, 3.8] }

// 3. Apply the correct treatment for your supply
applyRate(check.valid && isB2BExport ? 0 : rates.standard_rate);

About Switzerland VAT

Switzerland has the lowest standard VAT rate of any European country at 8.1%, set by federal referendum — the 2024 increase was approved by popular vote to shore up the AHV pension fund. The registration test is unusual: a foreign company owes Swiss VAT registration if its worldwide turnover exceeds CHF 100,000, even on its first franc of Swiss sales. The special 3.8% lodging rate covers the hotel sector, and Liechtenstein applies Swiss VAT law under treaty.

VAT in Switzerland is administered by the Eidgenössische Steuerverwaltung (ESTV / FTA). Before applying any zero-rate or exemption to a Switzerland business customer, validate their registration first.

Sources: PwC Worldwide Tax Summaries · ESTV — VAT (accessed Jun 2026)

Rate history

Frequently asked questions

What is the VAT rate in Switzerland in 2026?

8.1% standard, 2.6% reduced (food, books, medicines) and 3.8% on accommodation — Europe's lowest rates.

When must a foreign business register for Swiss VAT?

When its global (not Swiss) turnover exceeds CHF 100,000 and it makes any supplies in Switzerland — a stricter test than most countries apply.

Validate Switzerland VAT numbers Get free API key

Related concepts and guides:

VAT & GST rates in other European countries

Norway (25%)Russia (22%)Serbia (20%)Ukraine (20%)United Kingdom (20%)All countries →