Italy VAT Numbers

Format, rates & examples

Everything you need to know about Imposta sul valore aggiunto (IVA) numbers in Italy โ€” format rules, current rates, and real company examples you can verify against VIES.

EU Member StateIVA โ€” Imposta sul valore aggiuntoEUR

VAT Number Format

Structure

IT + 11 digits

Example format

IT12345678901

Regex

^IT\d{11}$

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

Current VAT Rates

Standard

22%

Reduced

5%

Reduced

10%

Super reduced

4%

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

What we return for Italy

  • 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 โ†’

Check a Italy VAT Number

Enter a IVA number starting with IT to verify it against the official VIES database.

Format: IT + 11 digits

Example:

Italy IT VAT โ€” rates & validation via API

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

No API key required
Request
curl "https://api.vatnode.dev/v1/rates/IT"
Response200 OK
{
  "countryCode": "IT",
  "countryName": "Italy",
  "vatName": "Imposta sul valore aggiunto",
  "vatAbbr": "IVA",
  "standardRate": 22,
  "reducedRates": [
    10,
    5
  ],
  "superReducedRate": 4,
  "parkingRate": null,
  "vatNumberFormat": "IT + 11 digits",
  "vatNumberPattern": "^IT\\d{11}$",
  "updatedAt": "2026-05-12"
}

View full rates API reference โ†’

Get Italy 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('IT')
console.log(rate.standard) // IT standard VAT rate
getRate() result200 OK
{
  "country": "Italy",
  "currency": "EUR",
  "eu_member": true,
  "vat_name": "Imposta sul valore aggiunto",
  "vat_abbr": "IVA",
  "standard": 22,
  "reduced": [
    5,
    10
  ],
  "super_reduced": 4,
  "parking": null,
  "format": "IT + 11 digits",
  "pattern": "^IT\\d{11}$"
}

View package on GitHub โ†’

Validate Italy IT VAT numbers

Requires API key
Request
curl "https://api.vatnode.dev/v1/vat/IT15844561009" \
  -H "Authorization: Bearer YOUR_API_KEY"
Response200 OK
{
  "valid": true,
  "vatId": "IT15844561009",
  "countryCode": "IT",
  "companyName": "Gruppo IVA Enel",
  "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": "Italy",
  "countryVat": {
    "vatName": "Imposta sul valore aggiunto",
    "vatAbbr": "IVA",
    "currency": "EUR",
    "standardRate": 22,
    "reducedRates": [
      10,
      5
    ],
    "superReducedRate": 4,
    "parkingRate": null,
    "vatNumberFormat": "IT + 11 digits",
    "vatNumberPattern": "^IT\\d{11}$",
    "countryVatUpdatedAt": "2026-05-12"
  },
  "consultationNumber": null
}

View full API response schema โ†’

Frequently Asked Questions

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

VAT numbers in Italy follow the format: IT + 11 digits. Example: IT12345678901. VAT numbers are not case-sensitive โ€” lowercase input is automatically normalised.

What is the VAT number regex pattern in Italy?โ–พ

Use this regular expression to validate VAT numbers in Italy IVA number format locally:

^IT\d{11}$

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 IVA rate in Italy?โ–พ

The standard IVA rate in Italy is 22%. Reduced rates: 5%, 10%. Super-reduced rate: 4%. Rates are sourced from the EU Commission TEDB and updated daily.

How do I validate a VAT number in Italy 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 IVA rates. Free plan available โ€” 100 requests/month, no credit card required.

What does IVA stand for in Italy?โ–พ

IVA stands for Imposta sul valore aggiunto โ€” the Italy name for Value Added Tax (VAT). It appears on Italy invoices and tax documents.

Validate Italy VAT numbers in your app

Use the vatnode API to automate IVA validation in your invoicing or checkout flow. Free plan available, no credit card required.