VATComply
FX rates, geolocation and VAT validation
Daily exchange rates, IP geolocation and EU VAT number checks. Free tier without signup for light read-only use.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://api.vatcomply.com/rates?base=USD
{
"date": "2026-06-25",
"base": "USD",
"rates": {
"EUR": 0.881679,
"USD": 1,
"JPY": 161.849762,
"CZK": 21.383354,
"DKK": 6.590108,
"GBP": 0.759857,
"HUF": 313.463234,
"PLN": 3.780197
}
}curl "https://api.vatcomply.com/rates?base=USD"const res = await fetch("https://api.vatcomply.com/rates?base=USD");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.vatcomply.com/rates?base=USD")
print(res.json())/rates?base=USDPROBEDFX rates, geolocation and VAT validation
/rates?limit=5Exchange or interest rates.
/rates?page=1Exchange or interest rates.
/healthSimple liveness check.
/readyReadiness check with dependency checks.
/countriesGet list of countries
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
VATComply: common questions
Is VATComply free to use?
Yes — VATComply is a free finance API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does VATComply need an API key?
No — VATComply needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call VATComply from the browser?
Yes — VATComply returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is VATComply up right now?
VATComply is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.