# GLEIF LEI Lookup & Search

> GLEIF LEI Lookup & Search is a paid API for AI agents from agentdata-api.sander-van-aard.workers.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Looks up a Legal Entity Identifier (LEI) by code or searches for a legal entity by name against the official GLEIF register, returning registration status, legal form, jurisdiction, and address.

## Facts

- Endpoint: POST https://agentdata-api.sander-van-aard.workers.dev/eu/lei
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gleif-lei-lookup-search-2e7cea0c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ToZaVsyHv82gp1X6kMe4M

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 gleif-lei-lookup-search-2e7cea0c -d '<json body>'
```

Example prompt: Can you look up the company 'Deutsche Bank AG' in the GLEIF LEI register and tell me their LEI code, registration status, and registered address?

## When to prefer this

Use this endpoint as a fast, cheap first-pass verification of a legal entity before deeper company screening or KYC workflows. Ideal when you have an LEI code to validate or need to resolve an entity's official legal name and status from the authoritative global register. Prefer this over national company registries when operating across multiple jurisdictions or when the entity's LEI is already known.

## Known failure modes

- LEI code not found in GLEIF register — returns empty or error result
- Company name search returns no matches — ambiguous or unregistered entity
- LEI status is LAPSED — entity no longer has an active registration
- Invalid LEI format — malformed code rejected
- Multiple matches for a name search with no jurisdiction filter — returns list of candidates
- Upstream GLEIF API unavailable — service may return error or timeout

## How this service works

LEI lookup (Legal Entity Identifier) from the official GLEIF register. Look up by LEI code or search by legal name (optional jurisdiction filter). Returns the official legal name, entity status, registration status (ISSUED/LAPSED), jurisdiction, legal form and registered address, with a direct GLEIF source link per record. Legal entities only. Ideal cheap first check before deeper company screening.

## Output

Returns the official legal name, current entity status, LEI registration status (ISSUED or LAPSED), jurisdiction, legal form, and registered address for matching legal entities, along with a direct link to the GLEIF source record.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gleif-lei-lookup-search-2e7cea0c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdata-api.sander-van-aard.workers.dev](https://www.zero.xyz/host/agentdata-api.sander-van-aard.workers.dev/llms.txt)
