# Delx LEI Lookup

> Delx LEI Lookup is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Look up a Legal Entity Identifier (LEI) via GLEIF to retrieve its status and legal entity name for $0.002 USDC.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/lei-lookup
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/delx-lei-lookup-0fad99c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_O3hJYceFRIvkgas7Tbbjg

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 delx-lei-lookup-0fad99c7 -d '<json body>'
```

Example prompt: Can you look up LEI code 5493001KJTIIGC8Y1R12 and tell me the legal name of the entity and whether it's currently active?

## When to prefer this

Choose this endpoint when you need a fast, low-cost single LEI resolution against the authoritative GLEIF registry and want results with status and legal name. Ideal for agent workflows doing KYB, compliance checks, or trade document enrichment where LEI codes are already known and need to be resolved to entity details.

## Known failure modes

- Invalid or malformed LEI (not 20 characters or wrong format) — returns validation error
- LEI not found in GLEIF registry — returns not-found or empty result
- Payment failure for the $0.002 USDC x402 charge — request blocked
- GLEIF upstream unavailability — may return timeout or service error

## How this service works

Look up a 20-char Legal Entity Identifier via GLEIF for $0.002 USDC with status and legal name. Call when you need this bounded result without an API key or subscription. Returns machine-readable JSON via x402 on Base or Solana. Limitation: results cover only the supplied input or one bounded public endpoint at request time; callers must verify before acting.

## Output

Returns the legal entity name and LEI registration status (e.g. ISSUED, LAPSED, MERGED, RETIRED) associated with the provided 20-character LEI code, sourced from the GLEIF registry.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type",
    "example"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/delx-lei-lookup-0fad99c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
