Legal entity reference data from the GLEIF LEI golden copy (updated daily, CC0)
Legal entity reference data from the GLEIF LEI golden copy (updated daily, CC0). Direct lookup: ?lei=529900FCMZ4LKXFD0R69. Search: ?name=airbus&country=FR&limit=5. Each result: lei, legal_name, entity_status, registration_status (ISSUED/LAPSED), jurisdiction, legal_form_id, hq_city/country, next_renewal_date. 24h cache.
5000 (raw units)
price
22
calls / 30d
6
unique payers
2026-09-14
updated
Provider
data.greeneris.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"country": "FR",
"limit": 3,
"name": "airbus"
},
"type": "http"
},
"output": {
"example": {
"query": {
"country": "FR",
"name": "airbus"
},
"results": [
{
"entity_status": "ACTIVE",
"hq_city": "BLAGNAC",
"hq_country": "FR",
"jurisdiction": "FR",
"legal_form_id": "6CHY",
"legal_name": "AIRBUS",
"lei": "529900FCMZ4LKXFD0R69",
"next_renewal_date": "2026-12-05T09:23:00Z",
"registration_status": "ISSUED"
}
],
"source": "GLEIF LEI Records API, golden copy (data licensed CC0)",
"total": 15
},
"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": {
"country": {
"description": "2-letter legal-address country filter (optional)",
"type": "string"
},
"lei": {
"description": "20-character LEI code for a direct lookup",
"type": "string"
},
"limit": {
"default": 5,
"description": "Max search results, 1-10",
"type": "integer"
},
"name": {
"description": "Legal name to search (used when lei is absent)",
"type": "string"
}
},
"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://data.greeneris.io/v1/global/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://data.greeneris.io/v1/global/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://data.greeneris.io/v1/global/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/3906.json, and this resource appears in /discovery/resources and /discovery/search.