# Company LEI Lookup

> Company LEI Lookup is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-16).

Looks up a company in the GLEIF global Legal Entity Identifier register and returns its LEI code, legal name, entity status, jurisdiction, and address with exact-match filtering.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/company-lei
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/company-lei-lookup-edeef04f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4OwUaLeLD5oyM5Z8vcwIr

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 company-lei-lookup-edeef04f
```

Example prompt: Can you look up the LEI code for 'Deutsche Bank AG' in the GLEIF register and tell me its entity status and jurisdiction?

## When to prefer this

Use this endpoint when you need authoritative LEI data from the official GLEIF global register with intelligent exact-match filtering, rather than raw GLEIF API results which return thousands of unrelated rows. Ideal for KYC, compliance, counterparty verification, or enriching corporate databases with LEI codes and legal entity metadata.

## Known failure modes

- No exact match found — returns candidate list instead of a definitive result
- Company has never registered an LEI — not present in GLEIF at all
- Ambiguous name matches many unrelated entities — large candidate list returned
- GLEIF register unavailable or slow — upstream timeout
- Company name contains special characters that affect token matching

## How this service works

Look a company up in GLEIF, the global Legal Entity Identifier register: LEI code, registered legal name, entity status, registration status, jurisdiction and address. The register's own name filter is a token search that returns thousands of unrelated rows, so matches are re-checked here and only an exact one — or one differing solely in legal form (Inc/Ltd/GmbH) — is reported as found; the rest come back as candidates.

## Output

Returns the company's LEI code, registered legal name, entity status (active/inactive), registration status, jurisdiction, and address if an exact match (or near-exact match differing only in legal form suffix like Inc/Ltd/GmbH) is found. If no exact match is found, returns a list of candidate companies from GLEIF for manual review.

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Company legal name"
      }
     }
    }
   },
   "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/company-lei-lookup-edeef04f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
