# Strale LEI Lookup

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

Look up Legal Entity Identifier (LEI) data for companies via GLEIF, by LEI code or company name

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/lei-lookup
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-lei-lookup-9568d9a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zvZFcXaL-T028mh7oo5YR

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 strale-lei-lookup-9568d9a4
```

Example prompt: Can you look up the GLEIF record for the company with LEI code 549300MLUDYVRQOOXS22 and tell me its registered name, jurisdiction, and current status?

## When to prefer this

Choose this endpoint when you need authoritative, GLEIF-sourced legal entity data for a company identified by LEI code or name. It is the canonical source for LEI validation and entity identification in financial, regulatory, and KYC workflows. Prefer this over general company registries when the international LEI standard is required (e.g. MiFID II, EMIR, Basel III reporting). The cryptographic audit trail makes it suitable for compliance-sensitive agentic pipelines.

## Known failure modes

- Invalid or malformed 20-character LEI code returns an error or empty result
- Company name search may return multiple or zero matches if name is ambiguous
- Lapsed or retired LEI codes may return records but with inactive status
- GLEIF data may be stale if the entity has not renewed its LEI registration
- Neither 'lei' nor 'company_name' provided returns a validation error

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns a GLEIF LEI record including the 20-character LEI code, legal entity name, registration status (e.g. ISSUED, LAPSED), jurisdiction, entity category, registered address, and associated metadata. Each response also includes a cryptographic audit record with chain hashing for traceability.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "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)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-lei-lookup-9568d9a4/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)
