Validate VAT IDs, fetch current rates, and calculate the correct VAT – all with three endpoints. Fast, simple, reliable.
# Validate VAT (cURL) curl -s https://api.vatifytax.app/v1/validate-vat \ -H "Authorization: Bearer" \ -H "Content-Type: application/json" \ -d '{"vat_number":"DE811907980"}' | jq
Install our Python package and start in seconds.
pip install vatify
Kopiert!
from vatify import Vatify
client = Vatify(api_key="YOUR_API_KEY")
res = client.validate_vat("DE123456789")
print(res.valid)
Yes, 30 requests/month – ideal for testing.
All EU countries. The rates route returns country-specific VAT rates.
Use Authorization: Bearer <API_KEY> header.
Coming soon. Currently cURL/Fetch examples.