Business

LEI Opzoeken (GLEIF)

GLEIF LEI opzoek API — juridische entiteiten opzoeken via Legal Entity Identifier code of bedrijfsnaam. Wereldwijde LEI-database via GLEIF REST API.

GET /v1/business/lei-lookup

Look up a legal entity by its LEI (Legal Entity Identifier) code, or search for entities by name, using the GLEIF Global LEI Index (CC-0 open data, ~2.5 million entities worldwide).

Provide either lei or name — not both.

Request parameters

ParameterTypeRequiredDescription
leistringExact 20-character LEI code, e.g. 5493001KJTIIGC8Y1R12
namestringCompany name to search, e.g. ING Bank
countrystringFilter name search by ISO alpha-2 jurisdiction, e.g. NL
rowsintegerMaximum results for name search (1–20, default 5)

Example request — by LEI code

curl -H "X-API-Key: YOUR_KEY" \
  "https://api.omnizoek.nl/v1/business/lei-lookup?lei=5493001KJTIIGC8Y1R12"

Example response — single LEI

{
  "lei": "5493001KJTIIGC8Y1R12",
  "legal_name": "ING Bank N.V.",
  "other_names": [],
  "legal_form": "NIJZ",
  "jurisdiction": "NL",
  "status": "ISSUED",
  "registered_address": {
    "lines": ["Bijlmerplein 888"],
    "city": "Amsterdam",
    "region": "NL-NH",
    "country": "NL",
    "postal_code": "1102 MG"
  },
  "headquarters_address": {
    "lines": ["Bijlmerplein 888"],
    "city": "Amsterdam",
    "region": "NL-NH",
    "country": "NL",
    "postal_code": "1102 MG"
  },
  "registration_date": "2012-06-06T00:00:00+02:00",
  "last_updated": "2024-01-05T00:00:00+01:00",
  "next_renewal": "2025-01-04T00:00:00+01:00",
  "bic_codes": ["INGBNL2A"],
  "parent_lei": null
}

Example request — by name

curl -H "X-API-Key: YOUR_KEY" \
  "https://api.omnizoek.nl/v1/business/lei-lookup?name=ING+Bank&country=NL&rows=3"
{
  "query": "ING Bank",
  "country_filter": "NL",
  "results": [
    { "lei": "5493001KJTIIGC8Y1R12", "legal_name": "ING Bank N.V.", "status": "ISSUED", "jurisdiction": "NL", "..." : "..." }
  ]
}

Response fields (single LEI)

FieldTypeDescription
leistring20-character LEI code
legal_namestringOfficial registered legal name
other_namesarrayTrade names or transliterated names
legal_formstring | nullLegal form code, e.g. NV, BV
jurisdictionstring | nullISO alpha-2 jurisdiction, e.g. NL
statusstringISSUED | LAPSED | MERGED | RETIRED | ANNULLED | DUPLICATE
registered_addressobjectRegistered (legal) address
headquarters_addressobjectHeadquarters address
registration_datestring | nullInitial registration date (ISO 8601)
last_updatedstring | nullLast update date (ISO 8601)
next_renewalstring | nullNext annual renewal date (ISO 8601)
bic_codesarrayAssociated SWIFT BIC codes, if any
parent_leistring | nullDirect parent entity LEI, if known

Error responses

StatusCause
400Neither lei nor name provided
404LEI code not found, or no results for name search
503GLEIF API unavailable

Caching

Results are cached for 24 hours — LEI records change infrequently (annual renewals).

On this page