# fittings LEI Search

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

Search for LEI (Legal Entity Identifier) records by company name, returning jurisdiction, country, and registration status.

## Facts

- Endpoint: GET https://fittings.sh/v1/lei/search
- Price: $0.0054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fittings-lei-search-312a9c8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_84I4J01R1KIUnVai4LwXE

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-search-312a9c8c
```

Example prompt: Can you find the LEI record for Volkswagen AG? I need its jurisdiction and registration status — show me up to 5 results.

## When to prefer this

Use this endpoint when you need to resolve a company or legal entity name to its official GLEIF LEI record, especially for compliance, KYC, regulatory reporting (MiFID II, EMIR), or financial counterparty verification workflows. Prefer this over generic business search APIs when you specifically need the standardized 20-character LEI code and its registration metadata.

## Known failure modes

- No matching LEI records found for the given name — returns empty results
- Ambiguous or common name returns many loosely matched entities up to the limit
- Name typos or abbreviations may miss the correct entity
- Rate limiting or payment failure if x402 payment is not completed
- Limit parameter out of range (must be 1–25) may cause a validation error

## How this service works

Find LEI records matching a company name, with jurisdiction, country and registration status.

## Output

A list of LEI records matching the searched company name, each including the 20-character LEI code, legal entity name, jurisdiction, country of registration, and registration status (e.g. active, lapsed, merged).

## 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": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Company or entity name"
      },
      "limit": {
       "type": "number",
       "description": "1-25, default 10"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fittings-lei-search-312a9c8c/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)
