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.

European countryMWST โ€” MehrwertsteuerCHF

VAT Number Format

Structure

CHE-NNN.NNN.NNN (+ MWST/TVA/IVA)

Example format

CHE-123.456.789 MWST

Regex

^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 required
Request
curl "https://api.vatnode.dev/v1/rates/CH"
Response200 OK
{
  "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"
}

View full rates API reference โ†’

Get Switzerland VAT rates via package โ€” offline, no HTTP

eu-vat-rates-data
Request
# 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
getRate() result200 OK
{
  "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)?$"
}

View package on GitHub โ†’

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.