# GLEIF LEI Lookup via api.strale.io

> GLEIF LEI Lookup via api.strale.io is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14).

Look up a Legal Entity Identifier (LEI) or company name against the GLEIF database, returning entity name, jurisdiction, addresses, and registration status.

## Facts

- Endpoint: GET https://api.strale.io/x402/lei-lookup
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-edcee6ff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NyxVJcJLHQRj7mpnYMhHv

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 api-strale-io-edcee6ff
```

Example prompt: Can you look up the company registered under LEI code 549300MLUDYVRQOOXS22 in the GLEIF database and tell me their legal name, jurisdiction, and current registration status?

## When to prefer this

Use this endpoint when you need to resolve, validate, or enrich a Legal Entity Identifier (LEI) against the authoritative GLEIF registry — particularly for KYC, AML, compliance workflows, or financial counterparty verification. Prefer this over generic company lookup endpoints when the LEI standard is specifically required (e.g. MiFID II, EMIR reporting). Also useful when you have only a company name and need its official LEI and jurisdiction.

## Known failure modes

- Invalid LEI format (not 20 characters) returns a validation error
- LEI not found in GLEIF database returns a 404 or empty result
- Company name search may return multiple or zero matches if the name is ambiguous
- Lapsed or deregistered LEIs may still return but with status indicating inactivity
- Network timeout or upstream GLEIF API unavailability returns a 5xx error

## How this service works

Look up a Legal Entity Identifier (LEI) via the GLEIF database. Accepts a 20-character LEI or company name. Returns entity name, jurisdiction, addresses, registration status.

## Output

Returns the legal entity's full name, jurisdiction, registered and headquarters addresses, LEI registration status (e.g. ISSUED, LAPSED), and associated metadata sourced from the GLEIF global LEI registry.

## Example request

```json
{
 "lei": "549300MLUDYVRQOOXS22"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "lei": {
   "type": "string",
   "description": "20-character LEI code (e.g. 549300MLUDYVRQOOXS22)"
  },
  "company_name": {
   "type": "string",
   "description": "Company name to search for in GLEIF (alternative to LEI code)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "lei": {
  "type": "string"
 },
 "status": {
  "type": "string"
 },
 "legal_name": {
  "type": "string"
 },
 "jurisdiction": {
  "type": "string"
 },
 "legal_address": {
  "type": "object"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-edcee6ff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
