Switzerland VAT Numbers
Format, rates & examples
Everything you need to know about Mehrwertsteuer (MWST) numbers in Switzerland โ format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
CHE-NNN.NNN.NNN (+ MWST/TVA/IVA)Example format
CHE-123.456.789 MWSTRegex
^CHE-?\d{3}\.?\d{3}\.?\d{3}[ ]?(MWST|TVA|IVA)?$VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
Current VAT Rates
Standard
8.1%
Reduced
2.6%
Reduced
3.8%
Rates from EU Commission TEDB ยท Updated 2026-05-14
Switzerland VAT rates via API
Get Switzerland VAT rates via API โ free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/CH"
{
"countryCode": "CH",
"countryName": "Switzerland",
"vatName": "Mehrwertsteuer",
"vatAbbr": "MWST",
"standardRate": 8.1,
"reducedRates": [
3.8,
2.6
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "CHE-NNN.NNN.NNN (+ MWST/TVA/IVA)",
"vatNumberPattern": "^CHE-?\\d{3}\\.?\\d{3}\\.?\\d{3}[ ]?(MWST|TVA|IVA)?$",
"updatedAt": "2026-05-14"
}Get Switzerland VAT rates via package โ offline, no HTTP
eu-vat-rates-data# npm install eu-vat-rates-data
import { getRate } from 'eu-vat-rates-data'
const rate = getRate('CH')
console.log(rate.standard) // CH standard VAT rate{
"country": "Switzerland",
"currency": "CHF",
"eu_member": false,
"vat_name": "Mehrwertsteuer",
"vat_abbr": "MWST",
"standard": 8.1,
"reduced": [
2.6,
3.8
],
"super_reduced": null,
"parking": null,
"format": "CHE-NNN.NNN.NNN (+ MWST/TVA/IVA)",
"pattern": "^CHE-?\\d{3}\\.?\\d{3}\\.?\\d{3}[ ]?(MWST|TVA|IVA)?$"
}Frequently Asked Questions
What is the VAT number format in Switzerland?โพ
VAT numbers in Switzerland follow the format: CHE-NNN.NNN.NNN (+ MWST/TVA/IVA). Example: CHE-123.456.789 MWST. VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
What is the VAT number regex pattern in Switzerland?โพ
Use this regular expression to validate VAT numbers in Switzerland MWST number format locally:
^CHE-?\d{3}\.?\d{3}\.?\d{3}[ ]?(MWST|TVA|IVA)?$Test against the uppercase number. Format validation catches typos locally.
What is the standard MWST rate in Switzerland?โพ
The standard MWST rate in Switzerland is 8.1%. Reduced rates: 2.6%, 3.8%. Rates are sourced from the EU Commission TEDB and updated daily.
What does MWST stand for in Switzerland?โพ
MWST stands for Mehrwertsteuer โ the Switzerland name for Value Added Tax (VAT). It appears on Switzerland invoices and tax documents.