Legal Entity Identifier lookup from the GLEIF golden copy, searchable by NAME - knowing th
Legal Entity Identifier lookup from the GLEIF golden copy, searchable by NAME - knowing the LEI already is the hard part. Returns records[] with lei, legalName, status, jurisdiction, legalAddress and a lapsed flag; LAPSED and RETIRED entities are returned, not hidden - a filtered record and no record look identical. Requires ?q=<legal name, max 200> or ?lei=<20 chars>. Errors: 400 missing_query|bad_lei, 404 no_match, 502 lei_unavailable. Sanctions screening is /sanctions.
30000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
x402.donnyautomation.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2740651e046c59aB2A6510401140643292d3a96F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "30000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"q": "Apple Inc."
},
"type": "http"
},
"output": {
"example": {
"attribution": "LEI data from the GLEIF Golden Copy (CC0 1.0).",
"count": 1,
"query": "Apple Inc.",
"records": [
{
"jurisdiction": "US-CA",
"lapsed": false,
"legalAddress": {
"city": "CUPERTINO",
"country": "US",
"postalCode": "95014"
},
"legalName": "APPLE INC.",
"lei": "HWUPKR0MPOU8FGXBT394",
"registration": {
"nextRenewalDate": "2027-03-08T17:27:20Z",
"status": "ISSUED"
},
"status": "ACTIVE"
}
],
"totalMatches": 1,
"ts": "2026-08-03T00:00:00.000Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"lei": {
"description": "Exact 20-character LEI for a single record. Use instead of q.",
"type": "string"
},
"limit": {
"description": "Maximum name-search results, 1..50 (default 10).",
"type": "string"
},
"q": {
"description": "Legal entity name, max 200 chars. Include the suffix for a precise match, e.g. \"Apple Inc.\" rather than \"Apple\".",
"type": "string"
}
},
"required": [
"q"
],
"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.donnyautomation.com/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.donnyautomation.com/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.donnyautomation.com/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/4932.json, and this resource appears in /discovery/resources and /discovery/search.