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.
VAT Number Format
Structure
IT + 11 digitsExample format
IT12345678901Regex
^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 โ
Famous Italy VAT Numbers
Gruppo IVA Enel
IT15844561009
Europe's largest utility (Enel VAT Group)
Verify โ
Luxottica Group SpA
IT10182640150
World's largest eyewear company (EssilorLuxottica)
Verify โ
Eni SpA
IT00905811006
Italian multinational oil and gas company
Verify โ
TIM S.p.A.
IT00488410010
Italian incumbent telecom operator (Telecom Italia)
Verify โ
Mediobanca SpA
IT10536040966
Italian investment bank
Verify โ
Ferrari S.p.A.
IT00159560366
Italian luxury sports car manufacturer, headquartered in Maranello
Verify โ
Check a Italy VAT Number
Enter a IVA number starting with IT to verify it against the official VIES database.
Format: IT + 11 digits
Italy IT VAT โ rates & validation via API
Get Italy VAT rates via API โ free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/IT"
{
"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"
}Get Italy 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('IT')
console.log(rate.standard) // IT standard VAT rate{
"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}$"
}Validate Italy IT VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/IT15844561009" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"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
}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.