# LION Verified Company — LEI Lookup (GLEIF)

> LION Verified Company — LEI Lookup (GLEIF) is a paid API for AI agents from lionx402.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Looks up Legal Entity Identifier (LEI) records from the GLEIF Global LEI Index by LEI code, legal name, or domain name, returning jurisdiction, registration status, and LOU details.

## Facts

- Endpoint: GET https://lionx402.com/api/x402/lei-lookup-json
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lion-verified-company-lei-lookup-gleif-62be3430
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hGe42NfuJ7p23vu1KONVC

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability lion-verified-company-lei-lookup-gleif-62be3430
```

Example prompt: Can you look up the LEI record for Stripe — try searching by the domain stripe.com — and tell me their LEI code, registration status, and which jurisdiction they're registered in?

## When to prefer this

Choose this endpoint when you need authoritative, globally standardized legal entity identification data directly from the GLEIF Golden Copy index — especially for KYC/KYB, trade compliance, counterparty verification, or regulatory reporting workflows. Prefer over general company enrichment endpoints when the primary need is the LEI code itself, registration status, or LOU attribution. Works without any API key via x402 micropayment.

## Known failure modes

- No match found for the provided name, domain, or LEI — returns empty result set
- Invalid LEI format (must be 20 characters) — returns validation error
- Ambiguous name query returns multiple candidates — caller must refine search
- GLEIF upstream unavailable — service may return 503 or timeout
- Payment not completed via x402 — returns 402 Payment Required before data is served

## How this service works

GLEIF LEI lookup for AI agents — Legal Entity Identifier search by LEI code, legal name, or domain. Keyless Global LEI Index Golden Copy (api.gleif.org), no API key. LEI, jurisdiction, registration status, LOU. Ed25519-attested. $0.005 Base USDC x402. Matches: LEI, GLEIF, legal entity identifier, LEI lookup, company LEI.

## Output

Returns a JSON object containing the matched entity's 20-character LEI code, official legal name, jurisdiction of registration, LEI registration status (e.g. ISSUED, LAPSED), the Local Operating Unit (LOU) that issued the LEI, and additional GLEIF entity metadata. Response is Ed25519-attested for cryptographic provenance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lei": {
       "type": "string",
       "description": "20-char LEI e.g. 5493001KJTIIGC8Y1R12"
      },
      "name": {
       "type": "string",
       "description": "Legal entity name search"
      },
      "domain": {
       "type": "string",
       "description": "Optional domain → name search (e.g. stripe.com)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "lei": "894500EDC64T52PGFL08",
  "asset_id": "LION_LEI_LOOKUP_001",
  "resolved": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lion-verified-company-lei-lookup-gleif-62be3430/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from lionx402.com](https://www.zero.xyz/host/lionx402.com/llms.txt)
