# fittings LEI Lookup

> fittings LEI Lookup is a paid API for AI agents from fittings.sh, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Resolve a 20-character LEI code to its GLEIF record, returning the entity's legal name, addresses, jurisdiction, legal form, and registration status.

## Facts

- Endpoint: GET https://fittings.sh/v1/lei/lookup
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-lei-lookup-3defef34
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M66oZqe0a_MUNi8Es9yl6

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 fittings-lei-lookup-3defef34
```

Example prompt: Can you look up the GLEIF record for LEI code 5493001KJTIIGC8Y1R12 and tell me the legal name, jurisdiction, and registration status of that entity?

## When to prefer this

Use this endpoint when you need authoritative, structured GLEIF data for a legal entity identified by its ISO 17442 LEI code — particularly for KYC/AML compliance, regulatory reporting, counterparty verification, or financial due diligence workflows. Prefer this over generic company lookup tools when you already have an LEI and need the official registered record rather than scraped or aggregated corporate data.

## Known failure modes

- Invalid or malformed LEI (not 20 characters) returns a 400 error
- LEI not found in GLEIF registry returns a 404 or empty result
- Lapsed or retired LEI may return a record with a non-ISSUED status rather than an error
- GLEIF data source unavailable causes a 503 or timeout
- Network issues or upstream GLEIF API downtime may cause intermittent failures

## How this service works

Resolve an LEI code to its GLEIF record: registered legal name, addresses, jurisdiction, legal form and registration status.

## Output

A GLEIF record for the specified LEI, including the entity's registered legal name, headquarters and legal addresses, jurisdiction (country), legal form, and current LEI registration status (e.g. ISSUED, LAPSED, ANNULLED).

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "lei"
     ],
     "properties": {
      "lei": {
       "type": "string",
       "description": "20-character ISO 17442 identifier"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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