$0.004
per call · USDC on Base Sepolia
Return the registry-authoritative GLEIF record for a Legal Entity Identifier — legal and previous names, legal and headquarters addresses, jurisdiction, legal form, entity and registration status, renewal dates, managing LOU, corroboration level, BIC codes and the local registry identifier. The LEI checksum is validated before any lookup. Use when: Look up everything the LEI register holds for this identifier.
Endpoint
GET https://api-staging.eckari.com/v1/entities/lei/:lei3
Calls / 30d
1
Unique payers / 30d
Aug 18
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-staging.eckari.com/v1/entities/lei/:lei", {
method: "GET",
});
const data = await res.json();curl -X GET \
"https://api-staging.eckari.com/v1/entities/lei/:lei" \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"data": {
"bic": [
"APLEUS66XXX"
],
"category": "GENERAL",
"conformity_flag": "CONFORMING",
"creation_date": "1977-01-03T00:00:00Z",
"entity_status": "ACTIVE",
"expiration": null,
"golden_copy_date": "2026-08-17T08:00:00Z",
"headquarters_address": {
"city": "Cupertino",
"country": "US",
"lines": [
"One Apple Park Way"
],
"postal_code": "95014",
"region": "US-CA"
},
"jurisdiction": "US-CA",
"legal_address": {
"city": "Glendale",
"country": "US",
"lines": [
"C/O C T Corporation System"
],
"postal_code": "91203",
"region": "US-CA"
},
"legal_form": {
"code": "H1UM",
"other": null
},
"legal_name": "Apple Inc.",
"legal_name_language": "en",
"lei": "HWUPKR0MPOU8FGXBT394",
"other_names": [
{
"language": "en",
"name": "Apple Computer, Inc.",
"type": "PREVIOUS_LEGAL_NAME"
}
],
"registered_as": "806592",
"registered_at": {
"other": null,
"ra_code": "RA000598"
},
"registration": {
"corroboration_level": "FULLY_CORROBORATED",
"initial_date": "2012-06-06T15:53:00Z",
"last_update": "2026-03-03T16:34:33Z",
"managing_lou": "5493001KJTIIGC8Y1R12",
"next_renewal": "2027-03-08T17:27:20Z",
"status": "ISSUED",
"validated_as": "806592",
"validated_at": {
"other": null,
"ra_code": "RA000598"
}
},
"related": {
"children_available": true,
"direct_parent_available": false,
"ultimate_parent_available": false
},
"sub_category": null
},
"meta": {
"capability": "entity.lei.profile",
"freshness": "live",
"source": "gleif",
"version": "1.0.0"
}
}Payment details
0x7c0ba1d16322ee426d6508a74b571dd73a5a35daUSDC · 0x036cbd53842c5426634e7929541ec2318f3dcf7eIs this your API?
Pin it to the top of Social & Community 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?