Skip to content
Eden Engine

LEI Lookup by Code or Company Name (GLEIF)

omnial/x402-lei-lookup

Given a 20-character LEI code or a company name, returns the matching entity's legal name, jurisdiction, legal form, registration status, and registered legal and headquarters addresses from the GLEIF Legal Entity Identifier database, or an error code/message when no entity matches the input.

activeper callv1
Provider
Web & Business Data Network
Category
company-enrichment
Provider price
$0.081081 per call
Latency p50 / p95
— / —
Success rate
—
Verified
—

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "anyOf": [
    {
      "required": [
        "lei"
      ]
    },
    {
      "required": [
        "company_name"
      ]
    }
  ],
  "properties": {
    "lei": {
      "type": "string",
      "description": "20-character LEI code (e.g. 549300MLUDYVRQOOXS22)"
    },
    "company_name": {
      "type": "string",
      "description": "Company name to search for in GLEIF (alternative to LEI code)"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "lei": {
      "type": "string",
      "description": "The matched entity's 20-character LEI code."
    },
    "code": {
      "type": "string",
      "description": "Present only on a failed/not-found lookup, e.g. 'HTTP_400'. Absent on a found entity."
    },
    "status": {
      "type": "string",
      "description": "e.g. 'ACTIVE'."
    },
    "message": {
      "type": "string",
      "description": "Present only on a failed/not-found lookup -- a short error message, e.g. 'Invalid input: HTTP 400'. Absent on a found entity."
    },
    "category": {
      "type": "string",
      "description": "GLEIF entity category, e.g. 'GENERAL'."
    },
    "legal_form": {
      "type": "string",
      "description": "GLEIF legal form code, e.g. 'H1UM'. Vendor-internal coding, not spelled out."
    },
    "legal_name": {
      "type": "string",
      "description": "The entity's registered legal name."
    },
    "jurisdiction": {
      "type": "string",
      "description": "e.g. 'US-CA' -- country, sometimes with a sub-national suffix."
    },
    "legal_address": {
      "type": "object",
      "properties": {
        "city": {
          "type": "string"
        },
        "line1": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "postal_code": {
          "type": "string"
        }
      },
      "description": "The entity's registered legal address, as filed with GLEIF -- public corporate registration data, not a private address.",
      "additionalProperties": true
    },
    "last_update_date": {
      "type": "string",
      "description": "ISO 8601 datetime the LEI record was last refreshed by GLEIF."
    },
    "registration_status": {
      "type": "string",
      "description": "LEI registration status, e.g. 'ISSUED'."
    },
    "headquarters_address": {
      "type": "object",
      "properties": {
        "city": {
          "type": "string"
        },
        "line1": {
          "type": "string"
        },
        "country": {
          "type": "string"
        },
        "postal_code": {
          "type": "string"
        }
      },
      "description": "The entity's registered headquarters address, as filed with GLEIF -- public corporate registration data, not a private address.",
      "additionalProperties": true
    },
    "initial_registration_date": {
      "type": "string",
      "description": "ISO 8601 datetime the LEI was first issued."
    }
  },
  "description": "The LEI record, as returned at routing.responseResultPath ($.output), on a found lookup, OR an error {code, message} pair when no entity matches the input -- the two shapes are disjoint, never both present.",
  "additionalProperties": true
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.081081
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 23, 2026