VATFIND FOR DEVELOPERS

Company data.
Part of your workflow.

The same company discovery experience, designed to become part of your onboarding, invoicing, and internal tools.

Read the documentation Public API access is in preparation

A small request.
A useful company record.

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 fields
const 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);
Browser endpoint · same-origin requests only

Consistent fields

Company name, identifiers, available address and registry status, plus the source and retrieval time.

Used by the website

API key management

Dedicated customer keys with server-side authorization, revocation, and usage tracking.

Planned for public API

A shared credit balance

A single account balance for paid website and API lookups, with an auditable usage history.

Planned for paid launch

Need Global Database’s API today?

Existing 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.

Global Database docs