# CelerAPI LEI Lookup

> CelerAPI LEI Lookup is a paid API for AI agents from www.celerapi.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Retrieves live, structured legal entity identifier (LEI) data for a given LEI code from the GLEIF registry

## Facts

- Endpoint: GET https://www.celerapi.com/v1/lei/%7Blei%7D
- 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/celerapi-lei-lookup-72bb77a9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B_D8c4a5EZvEMs8Zaz9Qp

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 celerapi-lei-lookup-72bb77a9
```

Example prompt: Can you look up the legal entity details for LEI code 5493001KJTIIGC8Y1R12 — I need the registered name, status, and address from the GLEIF registry?

## When to prefer this

Choose this endpoint when you have a specific LEI code and need to resolve it to an official GLEIF entity record in real time. It is preferable over web scraping or third-party aggregators because it sources live data directly from GLEIF under CC0 1.0 license, requires no subscription or API key (pay-per-request via x402), and returns structured machine-readable JSON. Best suited for KYC, AML compliance, counterparty verification, and financial data enrichment workflows where authoritative, current LEI data is required.

## Known failure modes

- Invalid or malformed LEI code returns an error or empty data block
- LEI not found in GLEIF registry returns success:false or empty data
- Network timeout results in failed request
- Expired or lapsed LEI may return a record with inactive status rather than an error

## How this service works

Resolve companies, legal entities and financial reference data using authoritative sources. Machine-native, pay per request, no subscription.

## Output

A JSON object containing the entity's GLEIF LEI record, including legal name, registration status, entity type, registered address, and provenance metadata (source: GLEIF, license: CC0 1.0, freshness: live). The response includes a 'success' boolean, 'complete' flag, any 'warnings', and the entity 'data' block.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "complete": true,
  "warnings": [],
  "provenance": {
   "source": "Global Legal Entity Identifier Foundation",
   "license": "CC0 1.0",
   "provider": "gleif",
   "freshness": "live",
   "source_url": "https://api.gleif.org"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/celerapi-lei-lookup-72bb77a9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.celerapi.com](https://www.zero.xyz/host/www.celerapi.com/llms.txt)
