Serbia VAT Numbers

Format, rates & examples

Everything you need to know about Porez na dodatu vrednost (PDV) numbers in Serbia โ€” format rules, current rates, and real company examples you can verify against VIES.

European countryPDV โ€” Porez na dodatu vrednostRSD

VAT Number Format

Structure

9 digits

Example format

123456789

Regex

^\d{9}$

VAT numbers are not case-sensitive โ€” lowercase input is automatically normalised.

Current VAT Rates

Standard

20%

Reduced

10%

Rates from EU Commission TEDB ยท Updated 2026-05-14

Serbia VAT rates via API

Get Serbia VAT rates via API โ€” free, no key

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/RS"
Response200 OK
{
  "countryCode": "RS",
  "countryName": "Serbia",
  "vatName": "Porez na dodatu vrednost",
  "vatAbbr": "PDV",
  "standardRate": 20,
  "reducedRates": [
    10
  ],
  "superReducedRate": null,
  "parkingRate": null,
  "vatNumberFormat": "9 digits",
  "vatNumberPattern": "^\\d{9}$",
  "updatedAt": "2026-05-14"
}

View full rates API reference โ†’

Get Serbia 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('RS')
console.log(rate.standard) // RS standard VAT rate
getRate() result200 OK
{
  "country": "Serbia",
  "currency": "RSD",
  "eu_member": false,
  "vat_name": "Porez na dodatu vrednost",
  "vat_abbr": "PDV",
  "standard": 20,
  "reduced": [
    10
  ],
  "super_reduced": null,
  "parking": null,
  "format": "9 digits",
  "pattern": "^\\d{9}$"
}

View package on GitHub โ†’

Frequently Asked Questions

What is the VAT number format in Serbia?โ–พ

VAT numbers in Serbia 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 Serbia?โ–พ

Use this regular expression to validate VAT numbers in Serbia PDV number format locally:

^\d{9}$

Test against the uppercase number. Format validation catches typos locally.

What is the standard PDV rate in Serbia?โ–พ

The standard PDV rate in Serbia is 20%. Reduced rates: 10%. Rates are sourced from the EU Commission TEDB and updated daily.

What does PDV stand for in Serbia?โ–พ

PDV stands for Porez na dodatu vrednost โ€” the Serbia name for Value Added Tax (VAT). It appears on Serbia invoices and tax documents.