Consistent fields
Company name, identifiers, available address and registry status, plus the source and retrieval time.
Used by the websiteVATFIND FOR DEVELOPERS
The same company discovery experience, designed to become part of your onboarding, invoicing, and internal tools.
The website already uses a server-side connection to Global Database. Search by company name and country, or by a VAT / EIN number.
The example shows the current same-origin browser contract. It is not an externally available, key-authenticated VATFind API.
Explore the request fieldsconst response = await fetch("/api/lookup", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
mode: "name",
query: "Global Data Intelligence",
country: "GB"
})
});
const result = await response.json();
if (!response.ok) throw new Error(result.error);
console.log(result.companies);Company name, identifiers, available address and registry status, plus the source and retrieval time.
Used by the websiteDedicated customer keys with server-side authorization, revocation, and usage tracking.
Planned for public APIA single account balance for paid website and API lookups, with an auditable usage history.
Planned for paid launchExisting Global Database customers can consult its own KYB documentation. That service uses separate credentials and commercial terms; a VATFind free allowance is not a Global Database API account.