POST

Validate EU VAT number

/v1/vat-validate

Validation · API VIES Commission EU

Request → Response

Examples from schemas.json.

Requestapplication/json
POST /v1/vat-validate
Content-Type: application/json

{
  "vat": "example",
  "country": "example",
  "number": "example"
}
Responseapplication/json
HTTP/1.1 200 OK
Content-Type: application/json

// Endpoint-specific body after 402 settlement

Overview

Validate EU VAT number via VIES; returns name and address when available.

Request schema

Body: JSON · application/json

FieldTypeDescription
vatstringoptional
countrystringoptional
numberstringoptional
IMPLEMENTATION
curl -X POST https://api.tools402.dev/v1/vat-validate \
  -H "Content-Type: application/json" \
  -d '{
  "vat": "example",
  "country": "example",
  "number": "example"
}'

402 payment flow omitted — see Integrations for settlement.