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