Liechtenstein VAT Numbers

Format, rates & examples

Everything you need to know about Mehrwertsteuer (MWST) numbers in Liechtenstein โ€” format rules, current rates, and real company examples you can verify against VIES.

European countryMWST โ€” MehrwertsteuerCHF

VAT Number Format

Structure

5 digits

Example format

12345

Regex

^\d{5}$

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

Liechtenstein VAT rates via API

Get Liechtenstein VAT rates via API โ€” free, no key

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/LI"
Response200 OK
{
  "countryCode": "LI",
  "countryName": "Liechtenstein",
  "vatName": "Mehrwertsteuer",
  "vatAbbr": "MWST",
  "standardRate": 8.1,
  "reducedRates": [
    3.8,
    2.6
  ],
  "superReducedRate": null,
  "parkingRate": null,
  "vatNumberFormat": "5 digits",
  "vatNumberPattern": "^\\d{5}$",
  "updatedAt": "2026-05-14"
}

View full rates API reference โ†’

Get Liechtenstein 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('LI')
console.log(rate.standard) // LI standard VAT rate
getRate() result200 OK
{
  "country": "Liechtenstein",
  "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": "5 digits",
  "pattern": "^\\d{5}$"
}

View package on GitHub โ†’

Frequently Asked Questions

What is the VAT number format in Liechtenstein?โ–พ

VAT numbers in Liechtenstein follow the format: 5 digits. Example: 12345. VAT numbers are not case-sensitive โ€” lowercase input is automatically normalised.

What is the VAT number regex pattern in Liechtenstein?โ–พ

Use this regular expression to validate VAT numbers in Liechtenstein MWST number format locally:

^\d{5}$

Test against the uppercase number. Format validation catches typos locally.

What is the standard MWST rate in Liechtenstein?โ–พ

The standard MWST rate in Liechtenstein 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 Liechtenstein?โ–พ

MWST stands for Mehrwertsteuer โ€” the Liechtenstein name for Value Added Tax (VAT). It appears on Liechtenstein invoices and tax documents.