# BizIntel API – LEI GLEIF Lookup

> BizIntel API – LEI GLEIF Lookup is a paid API for AI agents from bizintel-api.hahavoid0.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Looks up a legal entity by its 20-character LEI code via the GLEIF registry, returning verified legal name and registration data.

## Facts

- Endpoint: POST https://bizintel-api.hahavoid0.workers.dev/company/lei-gleif
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bizintel-api-lei-gleif-lookup-0f8ccbf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gX8UP0egjKC0VyWYgU8Ft

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 bizintel-api-lei-gleif-lookup-0f8ccbf6 -d '<json body>'
```

Example prompt: Can you look up the legal entity details for LEI code 7LTWFZYICNSX8D621K86 and tell me the registered company name from the GLEIF registry?

## When to prefer this

Use this endpoint when you have a specific 20-character LEI code and need to resolve it to a legal entity name or verify its GLEIF registration status. Ideal for KYC workflows, counterparty due diligence, regulatory compliance checks, and financial data enrichment where the LEI is already known. Prefer this over general company name searches when you have an authoritative LEI identifier and need a trustworthy registry lookup.

## Known failure modes

- Invalid or malformed LEI (not 20 characters) returns an error or found:false
- LEI not registered in GLEIF returns found:false with no legal name
- Network timeout or upstream GLEIF registry unavailability may cause errors
- Payment failure (insufficient USDC balance) blocks the call
- Stale data — data_as_of field may lag behind real-time GLEIF updates

## How this service works

Resolves Global Legal Entity Identifier (LEI) records from GLEIF public repositories.

## Output

Returns a JSON object containing a found flag, the entity's legal name, a confidence rating (e.g. 'high'), data freshness date, and any warnings or disclaimers. Example: {result: {found: true, legalName: 'Example Entity'}, confidence: 'high', data_as_of: '2026-06'}.

## 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",
     "required": [
      "lei"
     ],
     "properties": {
      "lei": {
       "type": "string",
       "description": "20-character LEI code"
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": {
   "found": true,
   "legalName": "Example Entity"
  },
  "warnings": [],
  "supported": true,
  "confidence": "high",
  "data_as_of": "2026-06",
  "disclaimer": "Informational support only. Not legal, tax, medical, veterinary, or financial advice. Verify with the cited official source or a qualified professional before acting."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bizintel-api-lei-gleif-lookup-0f8ccbf6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bizintel-api.hahavoid0.workers.dev](https://www.zero.xyz/host/bizintel-api.hahavoid0.workers.dev/llms.txt)
