Greece VAT API — Validate Greece VAT Numbers in Real Time

REST JSON endpoint for verifying Φόρος Προστιθέμενης Αξίας (ΦΠΑ) numbers against the official EU VIES register, with national registry fallback where available and a VIES consultation number on every successful check.

Why a Greece-aware VAT API

In Greece, VAT is known as Φόρος Προστιθέμενης Αξίας (ΦΠΑ) and the current standard rate is 24%. Every Greece VAT number starts with the prefix EL and follows a fixed structure issued by the Greece tax authority. A generic VAT validator that ignores country-specific quirks will accept malformed input, miss the country's format rules, and fail to surface the local registry identifier that accountants and auditors actually need.

The vatnode API normalises ΦΠΑ input, runs the official VIES check, and returns a single JSON shape with the consultation number, company data where published, and the current Greece VAT rates inline.

Greece VAT number format

Structure
EL + 9 digits
Regex pattern
^EL\d{9}$

Real Greece VAT numbers you can validate right now:

Validating Greece VAT numbers — code examples

All three examples validate the same Greece VAT number EL094019245.

curl
curl https://api.vatnode.dev/v1/vat/EL094019245 \
  -H "Authorization: Bearer YOUR_API_KEY"
Node.js (fetch)
const res = await fetch(
  'https://api.vatnode.dev/v1/vat/EL094019245',
  { headers: { Authorization: `Bearer ${process.env.VATNODE_API_KEY}` } }
)
const data = await res.json()
console.log(data.valid, data.companyName, data.consultationNumber)
Python (httpx)
import os, httpx

r = httpx.get(
    "https://api.vatnode.dev/v1/vat/EL094019245",
    headers={"Authorization": f"Bearer {os.environ['VATNODE_API_KEY']}"},
)
data = r.json()
print(data["valid"], data["companyName"], data["consultationNumber"])

What you get back

A successful response for a valid Greece VAT number looks like this:

{
  "valid": true,
  "vatId": "EL094019245",
  "countryCode": "GR",
  "countryName": "Greece",
  "companyName": "OTE S.A. (Hellenic Telecom)",
  "consultationNumber": "WAPIAAAAXk7ZpY3o",
  "source": "VIES",
  "countryVat": {
    "currency": "EUR",
    "standardRate": 24,
    "reducedRates": [6,13,17],
    "superReducedRate": 4,
    "parkingRate": 13
  },
  "verifiedAt": "2026-05-19T08:14:22Z"
}

When the number is not registered, valid is false and company fields are null. The consultationNumber is the EU VIES requestIdentifier — the documented audit reference for reverse-charge "reasonable care" evidence.

Greece VAT rates

vatnode returns the current Greece ΦΠΑ rates inline with every successful response. Today's rates (standard 24%, reduced 6%, 13%, 17%, super-reduced 4%, parking 13%) are sourced from the European Commission TEDB feed and refreshed daily.

Rate typeValue
Standard24%
Reduced (1)6%
Reduced (2)13%
Reduced (3)17%
Super-reduced4%
Parking13%

VIES vs national fallback for Greece

For Greece, VIES is the sole authoritative source. vatnode does not run a national-registry fallback for this country today — when VIES is unavailable, the API surfaces a structured VIES_UNAVAILABLE error with retry guidance so you can degrade gracefully rather than silently accept unverified numbers.

Cached VIES responses (15-minute TTL on identical VAT IDs) absorb the majority of short outages transparently. For the full per-country fallback status, see the coverage matrix.

Greece VAT API — FAQ

Is the Greece VAT number the same as the company registration number?

No. The Greece ΦΠΑ number is issued for VAT purposes and is distinct from any local company registration number. vatnode returns the ΦΠΑ number plus, when available, the registry identifier filed with the national company registry.

How fast is Greece VAT validation through vatnode?

Cached responses return in single-digit milliseconds. Live VIES lookups for Greece typically complete in under one second; a 15-minute Redis cache is applied to identical VAT IDs.

Does the API work for Greece sole traders and small businesses?

Yes. If a Greece sole trader or small business is registered for ΦΠΑ and listed in VIES, vatnode validates the number and returns the same response shape as for corporate entities. The valid field is true regardless of legal form.

Does vatnode handle Greece VIES outages?

vatnode caches recent VIES responses and surfaces a clear VIES_UNAVAILABLE error code with structured retry guidance. Greece does not have a national registry adapter today, so during a VIES outage validation defers to the cached result or returns the error for safe handling.

What is the consultation number returned for Greece checks?

The consultationNumber is the VIES requestIdentifier — a unique reference issued by the EU VIES service that proves the check was performed against the official EU register on a specific date. It is the EU's documented mechanism for "reasonable care" evidence under the reverse-charge rules and is returned on every successful VIES validation, including Greece.

See also

Start validating Greece VAT numbers

100 validations per month on the free plan, no credit card required. REST JSON over HTTPS, VIES consultation number on every check, EU-hosted by default.