Greece VAT Numbers
Format, rates & examples
Everything you need to know about Φόρος Προστιθέμενης Αξίας (ΦΠΑ) numbers in Greece — format rules, current rates, and real company examples you can verify against VIES.
VAT Number Format
Structure
EL + 9 digitsExample format
EL123456789Regex
^EL\d{9}$EL, not the ISO 3166 code GR. Our API accepts both — GR123456789 is automatically normalized to EL123456789.VAT numbers are not case-sensitive — lowercase input is automatically normalised.
Current VAT Rates
Standard
24%
Reduced
6%
Reduced
13%
Reduced
17%
Super reduced
4%
Parking
13%
Rates from EU Commission TEDB · Updated 2026-05-12
What we return for Greece
- 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 Greece VAT Numbers
OTE S.A. (Hellenic Telecom)
EL094019245
Hellenic Telecommunications Organization — largest Greek telecom
Verify →
HELPE S.A. (Hellenic Petroleum)
EL996689451
Greek integrated energy and refining company
Verify →
Metlen Energy & Metals S.A.
EL094316669
Greek industrial and energy conglomerate (formerly Mytilineos)
Verify →
Piraeus Financial Holdings S.A.
EL094014298
One of the four major Greek banks
Verify →
Eurobank Holdings S.A.
EL094014250
One of the four major Greek banks
Verify →
Public Power Corporation S.A. (ΔΕΗ)
EL090000045
Greek national electricity utility
Verify →
Check a Greece VAT Number
Enter a ΦΠΑ number starting with EL to verify it against the official VIES database.
Format: EL + 9 digits
Greece EL VAT — rates & validation via API
Get Greece VAT rates via API — free, no key
No API key requiredcurl "https://api.vatnode.dev/v1/rates/EL"
{
"countryCode": "EL",
"countryName": "Greece",
"vatName": "Φόρος Προστιθέμενης Αξίας",
"vatAbbr": "ΦΠΑ",
"standardRate": 24,
"reducedRates": [
17,
13,
6
],
"superReducedRate": 4,
"parkingRate": 13,
"vatNumberFormat": "EL + 9 digits",
"vatNumberPattern": "^EL\\d{9}$",
"updatedAt": "2026-05-12"
}Get Greece 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('EL')
console.log(rate.standard) // EL standard VAT rate{
"country": "Greece",
"currency": "EUR",
"eu_member": true,
"vat_name": "Φόρος Προστιθέμενης Αξίας",
"vat_abbr": "ΦΠΑ",
"standard": 24,
"reduced": [
6,
13,
17
],
"super_reduced": 4,
"parking": 13,
"format": "EL + 9 digits",
"pattern": "^EL\\d{9}$"
}Validate Greece EL VAT numbers
Requires API keycurl "https://api.vatnode.dev/v1/vat/EL094019245" \ -H "Authorization: Bearer YOUR_API_KEY"
{
"valid": true,
"vatId": "EL094019245",
"countryCode": "EL",
"companyName": "OTE S.A. (Hellenic Telecom)",
"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": "Greece",
"countryVat": {
"vatName": "Φόρος Προστιθέμενης Αξίας",
"vatAbbr": "ΦΠΑ",
"currency": "EUR",
"standardRate": 24,
"reducedRates": [
17,
13,
6
],
"superReducedRate": 4,
"parkingRate": 13,
"vatNumberFormat": "EL + 9 digits",
"vatNumberPattern": "^EL\\d{9}$",
"countryVatUpdatedAt": "2026-05-12"
},
"consultationNumber": null
}Frequently Asked Questions
What is the VAT number format in Greece?▾
VAT numbers in Greece follow the format: EL + 9 digits. Example: EL123456789. VAT numbers are not case-sensitive — lowercase input is automatically normalised.
What is the VAT number regex pattern in Greece?▾
Use this regular expression to validate VAT numbers in Greece ΦΠΑ number format locally:
^EL\d{9}$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 ΦΠΑ rate in Greece?▾
The standard ΦΠΑ rate in Greece is 24%. Reduced rates: 6%, 13%, 17%. Super-reduced rate: 4%. Parking rate: 13%. Rates are sourced from the EU Commission TEDB and updated daily.
How do I validate a VAT number in Greece 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 ΦΠΑ rates. Free plan available — 100 requests/month, no credit card required.
What does ΦΠΑ stand for in Greece?▾
ΦΠΑ stands for Φόρος Προστιθέμενης Αξίας — the Greece name for Value Added Tax (VAT). It appears on Greece invoices and tax documents.
Validate Greece VAT numbers in your app
Use the vatnode API to automate ΦΠΑ validation in your invoicing or checkout flow. Free plan available, no credit card required.