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.

European countryTVATaxa pe valoarea adăugatăMDL

VAT Number Format

Structure

7 digits

Example format

1234567

Regex

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

View full rates API reference

Get Moldova 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('MD')
console.log(rate.standard) // MD standard VAT rate
getRate() result200 OK
{
  "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}$"
}

View package on GitHub

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.