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.
VAT Number Format
Structure
5 digitsExample format
12345Regex
^\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 requiredcurl "https://api.vatnode.dev/v1/rates/LI"
{
"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"
}Get Liechtenstein 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('LI')
console.log(rate.standard) // LI standard VAT rate{
"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}$"
}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.