Andorra VAT Numbers
Format, rates & examples
Everything you need to know about Impost General Indirecte (IGI) numbers in Andorra โ format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
1 letter + 6 digits + 1 letterExample format
A123456BRegex
^[A-Z]\d{6}[A-Z]$VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
Current VAT Rates
Standard
4.5%
Reduced
1%
Reduced
2.5%
Rates from EU Commission TEDB ยท Updated 2026-05-14
Andorra VAT rates via API
Get Andorra VAT rates via API โ free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/AD"
{
"countryCode": "AD",
"countryName": "Andorra",
"vatName": "Impost General Indirecte",
"vatAbbr": "IGI",
"standardRate": 4.5,
"reducedRates": [
2.5,
1
],
"superReducedRate": null,
"parkingRate": null,
"vatNumberFormat": "1 letter + 6 digits + 1 letter",
"vatNumberPattern": "^[A-Z]\\d{6}[A-Z]$",
"updatedAt": "2026-05-14"
}Get Andorra 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('AD')
console.log(rate.standard) // AD standard VAT rate{
"country": "Andorra",
"currency": "EUR",
"eu_member": false,
"vat_name": "Impost General Indirecte",
"vat_abbr": "IGI",
"standard": 4.5,
"reduced": [
1,
2.5
],
"super_reduced": null,
"parking": null,
"format": "1 letter + 6 digits + 1 letter",
"pattern": "^[A-Z]\\d{6}[A-Z]$"
}Frequently Asked Questions
What is the VAT number format in Andorra?โพ
VAT numbers in Andorra follow the format: 1 letter + 6 digits + 1 letter. Example: A123456B. VAT numbers are not case-sensitive โ lowercase input is automatically normalised.
What is the VAT number regex pattern in Andorra?โพ
Use this regular expression to validate VAT numbers in Andorra IGI number format locally:
^[A-Z]\d{6}[A-Z]$Test against the uppercase number. Format validation catches typos locally.
What is the standard IGI rate in Andorra?โพ
The standard IGI rate in Andorra is 4.5%. Reduced rates: 1%, 2.5%. Rates are sourced from the EU Commission TEDB and updated daily.
What does IGI stand for in Andorra?โพ
IGI stands for Impost General Indirecte โ the Andorra name for Value Added Tax (VAT). It appears on Andorra invoices and tax documents.