We use cookies for authentication and — with your consent — for analytics. Read more.

Skip to content
KETL Data
DataAppsMCPSign in
  1. Home
  2. Data catalogue
  3. GLEIF LEI — global legal entity identifier
BusinessStandardCC0

GLEIF LEI — global legal entity identifier

GLEIF's API provides access to more than 2.6 million active LEI records for legal entities in 200+ jurisdictions, including SE and DK. The only global, open source for group structures (parent/child across borders), BIC-to-LEI and ISIN-to-LEI lookups. CC0, no auth, 600 req/min.

2.6M rows

Data volume

Daily

Updates

6

MCP tools

Example response — /records
{
  "lei": "5967007LIEEXZX1DP746",
  "legalName": "EQUINOR ASA",
  "jurisdiction": "NO",
  "registeredAs": "923609016",
  "address": {
    "lines": [
      "Forusbeen 50"
    ],
    "city": "STAVANGER",
    "country": "NO",
    "postalCode": "4035"
  },
  "entityStatus": "ACTIVE",
  "category": "GENERAL",
  "registrationStatus": "ISSUED",
  "initialRegistrationDate": "2012-06-06T00:00:00Z",
  "lastUpdateDate": "2026-01-14T08:12:00Z",
  "nextRenewalDate": "2027-01-14T00:00:00Z",
  "managingLou": "EVK05KS7XY1DEII3R011"
}

MCP integration

Available MCP tools
gleif.by_bic
gleif.by_isin
gleif.by_orgnr
gleif.get
gleif.relationships
gleif.search
Configuration for Claude Desktop / Cursor
{
  "mcpServers": {
    "gleif-lei": {
      "url": "https://data.ketl.no/mcp/gleif-lei",
      "headers": {
        "Authorization": "Bearer $KETL_API_KEY"
      }
    }
  }
}

Analysis apps that use this source

Ready-made tools built on GLEIF LEI — global legal entity identifier data. Use them directly in the browser, or wire the same data into your own analysis via the API below.

Company profile
Cross-referenced company profile in a single lookup — Brreg, GLEIF LEI, OpenCorporates and Wikidata, with Nordic name matches from CVR (DK) and YTJ (FI). KYB, journalism and investor analysis.
Norwegian continental shelf
Oil and gas production, fields, wells and production licences.
LEI search — global group structures
Search more than 2.6 million LEI records globally — parent/child relationships across jurisdictions, BIC/ISIN lookups and company verification. Free from GLEIF.
Nordic company register
One search across the company registers of Norway, Sweden, Denmark and Finland. Norway and Finland are covered by the national registers (Brreg, YTJ); Sweden and Denmark by GLEIF LEI, since Bolagsverket's and CVR's own APIs require an agreement. Shows which register answered, and retrieves the GLEIF-verified group structure across borders. For a single real-time lookup that also covers Iceland, see the NSG app.
Finanstilsynet register
Look up which companies hold a licence from Finanstilsynet — search by name or organisation number.
Shareholder search
Ownership and control for Norwegian companies — parent and subsidiary entities from GLEIF level 2, ownership and control roles from Enhetsregisteret, and the shareholder list as of 31 Dec from the Skatteetaten Shareholder Register where available.
Beneficial owners
Assess beneficial owners (≥ 25% ownership) in Norwegian entities under the Norwegian Anti-Money Laundering Act section 14 — limb by limb from Enhetsregisteret (the Central Coordinating Register), the register of roles and GLEIF group relationships — and screen every identified party against a consolidated sanctions list. KYB/AML for auditors, banks and lawyers.
KYB report
Complete Know-Your-Business report for Norwegian companies: Brreg base data, roles and board, 3 years of accounts, OpenSanctions screening and GLEIF LEI in a single lookup. With a heuristic risk score.

API endpoints

GET
/records

Søk og list LEI-records

name optional
Juridisk navn (minst én av name/registeredAs/jurisdiction) name=Equinor
registeredAs optional
Nasjonalt register-ID slik GLEIF lagrer det — norske org.nr har mellomrom (kombiner ikke med name/jurisdiction med mindre de matcher samme record) registeredAs=923 609 016
jurisdiction optional
ISO 3166-1 alpha-2 jurisdiksjonskode jurisdiction=NO
q optional
Alias for `name` (#2004). Ignoreres når `name` er satt. q=Equinor
Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/records
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/records"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/records/{lei}

Hent enkelt LEI-record

Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/records/{lei}
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/records/{lei}"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/records/{lei}/{kind}

Konsernrelasjoner (mor/datter, direkte/øverste)

Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/records/{lei}/{kind}
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/records/{lei}/{kind}"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/search

Fulltekst-søk i LEI-records

q required
Fulltekst-søketerm (min. 2 tegn) — selskapsnavn. q=Equinor
page optional
Sidetall (paginering). page=1
pageSize optional
Treff per side. pageSize=10
Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/search?q=Equinor
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/search?q=Equinor"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/{lei}

Direkte LEI-oppslag (kort sti)

Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/{lei}
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/{lei}"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/{lei}/relationships/{kind}

LEI-relasjoner (direct/ultimate parent/children)

Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/{lei}/relationships/{kind}
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/{lei}/relationships/{kind}"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/by-orgnr

Omvendt oppslag orgnr → LEI

orgnr required
Organisasjonsnummer (9 siffer) orgnr=923609016
Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/by-orgnr?orgnr=923609016
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/by-orgnr?orgnr=923609016"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/bic

BIC-til-LEI oppslag

bic required
BIC/SWIFT-kode (8 eller 11 tegn) bic=DNBANOKKXXX
Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/bic?bic=DNBANOKKXXX
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/bic?bic=DNBANOKKXXX"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

GET
/isin

ISIN-til-LEI oppslag

isin required
ISIN (12 tegn) isin=NO0010096985
Show curl example
# GET https://data.ketl.no/api/connectors/gleif-lei/isin?isin=NO0010096985
curl \
  -H "Accept: application/json" \
  "https://data.ketl.no/api/connectors/gleif-lei/isin?isin=NO0010096985"

Authenticated call — add one of these headers: x-api-key: ketl_… · Authorization: Bearer … — See the full reference in the documentation.

Access and pricing

GLEIF LEI — global legal entity identifier is openly available — create an account to get started.

globalleikonsernselskapsstrukturbankisinnordisk
KETL Data

Nordic open-data and compliance infrastructure. Source, rule and confidence on every answer.

Product links

  • Data
  • Apps
  • MCP
  • Contact

Legal links

  • AI transparency
  • Privacy
  • Terms
  • SLA
  • Cookies
  • Security

© 2026 KETL Data

build 8f3b7512