$0.003
per call · USD Coin on Base
Find Legal Entity Identifiers by company name in the global GLEIF register, optionally narrowed to one country. Returns the LEI, legal name, registration and entity status, jurisdiction, legal address and the local registry the entity is registered at — the identifier bridge between national company registers worldwide. Use when: What is the LEI for this company?
Endpoint
GET https://api.eckari.com/v1/entities/lei/search9
Calls / 30d
2
Unique payers / 30d
Sep 9
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.eckari.com/v1/entities/lei/search", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api.eckari.com/v1/entities/lei/search?country=GB&limit=3&q=TESCO+PLC" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"data": {
"country": "GB",
"items": [
{
"entity_status": "ACTIVE",
"jurisdiction": "GB",
"legal_address": {
"city": "WELWYN GARDEN CITY",
"country": "GB",
"lines": [
"TESCO HOUSE",
"SHIRE PARK, KESTREL WAY"
],
"postal_code": "AL7 1GA",
"region": "GB-HRT"
},
"legal_name": "TESCO PLC",
"legal_name_language": "en",
"lei": "2138002P5RNKC5W2JZ46",
"match_source": "filter",
"registered_as": "00445790",
"registered_at": {
"name": "Companies House",
"ra_code": "RA000585"
},
"registration_status": "ISSUED"
},
{
"entity_status": "INACTIVE",
"jurisdiction": "GB",
"legal_address": {
"city": "WELWYN GARDEN CITY",
"country": "GB",
"lines": [
"TESCO HOUSE",
"SHIRE PARK, KESTREL WAY"
],
"postal_code": "AL7 1GA",
"region": null
},
"legal_name": "TESCO TREASURY SERVICES PLC",
"legal_name_language": "en",
"lei": "213800DJFYY7MSLDKD28",
"match_source": "filter",
"registered_as": "07656305",
"registered_at": {
"name": "Companies House",
"ra_code": "RA000585"
},
"registration_status": "RETIRED"
},
{
"entity_status": "ACTIVE",
"jurisdiction": "GB",
"legal_address": {
"city": "WELWYN GARDEN CITY",
"country": "GB",
"lines": [
"C/O TESCO PENSION TRUSTEES LIMITED",
"TESCO HOUSE, SHIRE PARK, KESTREL WAY"
],
"postal_code": "AL7 1GA",
"region": "GB-HRT"
},
"legal_name": "TESCO PLC PENSION SCHEME",
"legal_name_language": "en",
"lei": "JL5Y1BHW3R0NH5H6C288",
"match_source": "filter",
"registered_as": null,
"registered_at": {
"name": null,
"ra_code": "RA999999"
},
"registration_status": "ISSUED"
}
],
"page": {
"has_more": true,
"limit": 3,
"next_offset": 3,
"offset": 0,
"returned": 3,
"total": 11
},
"query": "TESCO PLC"
},
"meta": {
"capability": "entity.lei.search",
"freshness": "near_live",
"source": "gleif",
"version": "2.1.0"
}
}Payment details
0x9d6b6fdb04040a55d58b24ff4c90c08cf6083c8fUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Search & Web and the homepage with a featured placement.
More from Eckari & similar services
Eckari · UK Directors
api-staging.eckari.com
Return the officers registered against a UK company on the Companies House register — directors, secretaries, LLP members and corporate officers — with role, appointment and resignation dates, nationality, country of residence, occupation, month/year of birth and public correspondence address. Active officers by default; include_resigned adds history. Paging is explicit: has_more and next_offset say whether more matching officers remain. Use when: Who are the directors of this UK company?
Eckari · FX Reference Rate
api-staging.eckari.com
European Central Bank euro foreign exchange reference rate for a pair - the latest published fix or any date in the last 90 days. The ECB publishes EUR/XXX only, so inverse and cross rates are computed by Eckari from the same fix and named in rate_derivation. Reference rates, one per TARGET working day around 16:00 CET, not tradable market rates. Source and reuse conditions travel in meta.attribution. Use when: What is the ECB reference rate for EUR to USD?
Eckari · UK Status
api-staging.eckari.com
Return the current legal status of a UK company from the Companies House register — active, dissolved, liquidation, administration, receivership, voluntary-arrangement and others — with status detail, cessation date, a derived is_active (true for the live-on-the-register statuses active, open and registered) and a derived is_striking_off for an active company with a proposal to strike off. One call, one authoritative register answer. Use when: Is this UK company still active?