Germany VAT Numbers
Format, rates & examples
Everything you need to know about Mehrwertsteuer (MwSt) numbers in Germany โ format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
DE + 9 digitsExample format
DE123456789Regex
^DE\d{9}$VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
Current VAT Rates
Standard
19%
Reduced
7%
Rates from EU Commission TEDB ยท Updated 2026-05-12
What we return for Germany
- VIES validation (valid / not valid)
- Company name & address
- National registry ID
- Founded date
- Legal form
- Industry
- Works if VIES is down
See the full coverage table for all 27 EU member states + Northern Ireland โ
Famous Germany VAT Numbers
SAP SE
DE143454214
Enterprise software giant
Verify โ
Siemens AG
DE129274202
Global industrial and technology conglomerate
Verify โ
Zalando SE
DE260543043
Europe's largest online fashion platform
Verify โ
BMW AG
DE129273398
German luxury automobile manufacturer
Verify โ
Volkswagen AG
DE115235681
World's second-largest automaker
Verify โ
Deutsche Telekom AG
DE123475223
Europe's largest telecom operator
Verify โ
Check a Germany VAT Number
Enter a MwSt number starting with DE to verify it against the official VIES database.
Format: DE + 9 digits
Germany DE VAT โ rates & validation via API
Get Germany VAT rates via API โ free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/DE"
{
"countryCode": "DE",
"countryName": "Germany",
"vatName": "Mehrwertsteuer",
"vatAbbr": "MwSt",
"standardRate": 19,
"reducedRates": [
7
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "DE + 9 digits",
"vatNumberPattern": "^DE\\d{9}$",
"updatedAt": "2026-05-12"
}Get Germany 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('DE')
console.log(rate.standard) // DE standard VAT rate{
"country": "Germany",
"currency": "EUR",
"eu_member": true,
"vat_name": "Mehrwertsteuer",
"vat_abbr": "MwSt",
"standard": 19,
"reduced": [
7
],
"super_reduced": null,
"parking": null,
"format": "DE + 9 digits",
"pattern": "^DE\\d{9}$"
}Validate Germany DE VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/DE143454214" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "DE143454214",
"countryCode": "DE",
"companyName": "SAP SE",
"companyAddress": null,
"companyRegistrationDate": null,
"companyForm": null,
"industryDescription": null,
"registryCode": null,
"registryCodeName": null,
"verifiedAt": "2026-04-25T12:00:00.000Z",
"checkId": "019dc41e-d64d-7255-8ed7-cf5443103cd8",
"countryName": "Germany",
"countryVat": {
"vatName": "Mehrwertsteuer",
"vatAbbr": "MwSt",
"currency": "EUR",
"standardRate": 19,
"reducedRates": [
7
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "DE + 9 digits",
"vatNumberPattern": "^DE\\d{9}$",
"countryVatUpdatedAt": "2026-05-12"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Germany?โพ
VAT numbers in Germany follow the format: DE + 9 digits. Example: DE123456789. VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
What is the VAT number regex pattern in Germany?โพ
Use this regular expression to validate VAT numbers in Germany MwSt number format locally:
^DE\d{9}$Test against the uppercase number. Format validation catches typos locally โ always follow with a VIES check to confirm the number is active.
What is the standard MwSt rate in Germany?โพ
The standard MwSt rate in Germany is 19%. Reduced rates: 7%. Rates are sourced from the EU Commission TEDB and updated daily.
How do I validate a VAT number in Germany programmatically?โพ
Send a GET request to https://api.vatnode.dev/v1/vat/{vatId} with your Authorization: Bearer header. The API checks the number against the official EU VIES database and returns a JSON response with a valid field, company name, address, and current MwSt rates. Free plan available โ 100 requests/month, no credit card required.
What does MwSt stand for in Germany?โพ
MwSt stands for Mehrwertsteuer โ the Germany name for Value Added Tax (VAT). It appears on Germany invoices and tax documents.
Validate Germany VAT numbers in your app
Use the vatnode API to automate MwSt validation in your invoicing or checkout flow. Free plan available, no credit card required.