Moldova VAT Numbers
Format, rates & examples
Everything you need to know about Taxa pe valoarea adăugată (TVA) numbers in Moldova — format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
7 digitsExample format
1234567Regex
^\d{7}$VAT numbers are not case-sensitive — lowercase input is automatically normalised.
Current VAT Rates
Standard
20%
Reduced
8%
Rates from EU Commission TEDB · Updated 2026-05-14
Moldova VAT rates via API
Get Moldova VAT rates via API — free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/MD"
{
"countryCode": "MD",
"countryName": "Moldova",
"vatName": "Taxa pe valoarea adăugată",
"vatAbbr": "TVA",
"standardRate": 20,
"reducedRates": [
8
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "7 digits",
"vatNumberPattern": "^\\d{7}$",
"updatedAt": "2026-05-14"
}Get Moldova 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('MD')
console.log(rate.standard) // MD standard VAT rate{
"country": "Moldova",
"currency": "MDL",
"eu_member": false,
"vat_name": "Taxa pe valoarea adăugată",
"vat_abbr": "TVA",
"standard": 20,
"reduced": [
8
],
"super_reduced": null,
"parking": null,
"format": "7 digits",
"pattern": "^\\d{7}$"
}Frequently Asked Questions
What is the VAT number format in Moldova?▾
VAT numbers in Moldova follow the format: 7 digits. Example: 1234567. VAT numbers are not case-sensitive — lowercase input is automatically normalised.
What is the VAT number regex pattern in Moldova?▾
Use this regular expression to validate VAT numbers in Moldova TVA number format locally:
^\d{7}$Test against the uppercase number. Format validation catches typos locally.
What is the standard TVA rate in Moldova?▾
The standard TVA rate in Moldova is 20%. Reduced rates: 8%. Rates are sourced from the EU Commission TEDB and updated daily.
What does TVA stand for in Moldova?▾
TVA stands for Taxa pe valoarea adăugată — the Moldova name for Value Added Tax (VAT). It appears on Moldova invoices and tax documents.