Look up any Legal Entity Identifier (LEI) for company information lookup and counterparty
Look up any Legal Entity Identifier (LEI) for company information lookup and counterparty / know-your-business (KYB) identity against the official GLEIF global registry — returns legal name, status, jurisdiction, legal form and registered address, real-time, worldwide coverage.
10000 (raw units)
price
3
calls / 30d
2
unique payers
2026-09-15
updated
Provider
x402-endpoints.onrender.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1D1B81247C407521E2A01F3E21514870dcf1620f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"lei": "529900T8BM49AURSDO55"
},
"type": "http"
},
"output": {
"example": {
"cached": false,
"disclaimer": "Indicative data from the GLEIF register, not a compliance opinion.",
"entity_status": "ACTIVE",
"initial_registration_date": "2016-08-04T11:00:36Z",
"jurisdiction": "FI",
"last_update_date": "2024-06-20T07:11:02Z",
"legal_address": {
"city": "ESPOO",
"country": "FI",
"lines": [
"Tekniikantie 14"
],
"postal_code": "02150",
"region": "FI-18"
},
"legal_form_code": "DKUW",
"legal_name": "Ubisecure Oy",
"lei": "529900T8BM49AURSDO55",
"managing_lou": "529900T8BM49AURSDO55",
"next_renewal_date": "2027-06-28T18:34:06Z",
"registration_status": "ISSUED",
"source": "GLEIF API v1 (gleif.org)",
"timestamp": "2026-06-24T12:00:00Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"lei": {
"description": "20-character LEI, e.g. '529900T8BM49AURSDO55'",
"pattern": "^[A-Z0-9]{20}$",
"type": "string"
}
},
"required": [
"lei"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-endpoints.onrender.com/gleif/lei" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-endpoints.onrender.com/gleif/lei");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-endpoints.onrender.com/gleif/lei")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/3299.json, and this resource appears in /discovery/resources and /discovery/search.