# GLEIF LEI Lookup by Company Name or LEI Code

> GLEIF LEI Lookup by Company Name or LEI Code is a paid API for AI agents from pyfile-agent.taile3ff35.ts.net, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Looks up Legal Entity Identifier (LEI) records from the GLEIF registry by company name or LEI code, returning entity details including status, jurisdiction, and legal name.

## Facts

- Endpoint: GET https://pyfile-agent.taile3ff35.ts.net/data/lei
- 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/gleif-lei-lookup-by-company-name-or-lei-code-dd06188d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XHpzhltuXnY66BUfkHqpk

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-by-company-name-or-lei-code-dd06188d
```

Example prompt: Can you look up the LEI code for JPMorgan Chase in the GLEIF registry and tell me if it's active?

## When to prefer this

Use this endpoint when you need to resolve a company name to its official GLEIF Legal Entity Identifier, or vice versa. Ideal for compliance, KYC, and counterparty due-diligence workflows where a standalone LEI lookup is needed. For a combined OFAC + LEI + SEC EDGAR check, prefer the composite due-diligence endpoint on the same host.

## Known failure modes

- No results found for an obscure or misspelled company name
- Ambiguous company names may return multiple results requiring further filtering
- GLEIF registry may not include smaller or non-regulated entities
- Invalid LEI code format returns empty or error response
- Rate limiting or upstream GLEIF API unavailability

## How this service works

GLEIF Legal Entity Identifier lookup by company name or LEI code. ?name=Apple or ?lei=<code>

## Output

Returns a list of matching legal entities with their LEI code, legal name, city, country, and entity status (e.g. ACTIVE, LAPSED). Also includes the original query and total number of results found.

## 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",
     "properties": {
      "name": {
       "type": "string"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "query": {
     "type": "string"
    },
    "total": {
     "type": "integer"
    },
    "results": {
     "type": "array",
     "items": {
      "type": "object",
      "properties": {
       "lei": {
        "type": "string"
       },
       "city": {
        "type": "string"
       },
       "status": {
        "type": "string"
       },
       "country": {
        "type": "string"
       },
       "legal_name": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gleif-lei-lookup-by-company-name-or-lei-code-dd06188d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from pyfile-agent.taile3ff35.ts.net](https://www.zero.xyz/host/pyfile-agent.taile3ff35.ts.net/llms.txt)
