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.
Switzerland has no public registry we can query in real time, so a number cannot be confirmed as active from outside. The TaxID VAT number checker still checks it against the national format, which catches transcription errors before they reach your accounting system.
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
| Type | Rate | Applies to |
|---|---|---|
| Standard | 8.1% | Most goods and services |
| Reduced | 2.6% | Food, non-alcoholic beverages, books, newspapers, medicines |
| Reduced | 3.8% | Hotel accommodation and bed-and-breakfast |
| Zero-rated | 0% | Exports and services supplied abroad |
Registration and filing
| Registration threshold | CHF 100,000Global turnover test — foreign businesses count worldwide revenue, not just Swiss sales |
| Tax authority | Eidgenössische Steuerverwaltung (ESTV / FTA) |
| Filing frequency | Quarterly 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.
curl https://www.taxid.dev/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.
// 1. Validate the customer's Switzerland tax ID
const check = await fetch(
'https://www.taxid.dev/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('https://www.taxid.dev/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
- 2018Standard rate cut from 8.0% to 7.7%
- 2024Raised to 8.1% to fund the AHV pension system
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.
Related concepts and guides: