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.

European countryIGI โ€” Impost General IndirecteEUR

VAT Number Format

Structure

1 letter + 6 digits + 1 letter

Example format

A123456B

Regex

^[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 required
Request
curl "https://api.vatnode.dev/v1/rates/AD"
Response200 OK
{
  "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"
}

View full rates API reference โ†’

Get Andorra 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('AD')
console.log(rate.standard) // AD standard VAT rate
getRate() result200 OK
{
  "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]$"
}

View package on GitHub โ†’

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.