VOOZH about

URL: https://apify.com/maximedupre/gleif-lei-lookup/api/python

โ‡ฑ GLEIF LEI Lookup and Legal Entity Data API API in Python ยท Apify


Pricing

$0.01 / 1,000 checked lei entities

Go to Apify Store

Look up GLEIF LEI records by company name, LEI code, or country filters. Export legal entity data, registration dates, addresses, parent relationships, ISIN links, and deterministic KYB decision fields.

Pricing

$0.01 / 1,000 checked lei entities

Rating

0.0

(0)

Developer

๐Ÿ‘ Maxime Duprรฉ

Maxime Duprรฉ

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

6 days ago

Last modified

Share

You might also like

GLEIF LEI Scraper

logiover/gleif-lei-scraper

Bulk LEI lookup from the GLEIF database. Export legal entity identifier data to CSV/JSON. A no-key GLEIF API alternative for KYC & enrichment.

GLEIF LEI Lookup Scraper

automation-lab/gleif-lei-lookup-scraper

Search official GLEIF Legal Entity Identifier records by company name or LEI for KYC, AML, onboarding, and counterparty enrichment.

๐Ÿ‘ User avatar

Stas Persiianenko

2

GLEIF LEI Bulk Lookup

automation-lab/gleif-lei-bulk-lookup

๐Ÿ”Ž Bulk lookup company LEIs from official GLEIF data. Match names or LEI codes and export KYB-ready entity status, jurisdiction, and renewal fields.

๐Ÿ‘ User avatar

Stas Persiianenko

2

GLEIF LEI Scraper

crawlerbros/gleif-lei-scraper

Search 2M+ legal entities from the Global LEI (Legal Entity Identifier) database by GLEIF. Free, no auth required. Get entity name, jurisdiction, address, registration status, and more.

GLEIF LEI Scraper

crawlergang/gleif-lei-scraper

Search 2M+ legal entities from the Global LEI (Legal Entity Identifier) database by GLEIF. Free, no auth required. Get entity name, jurisdiction, address, registration status, and more.

1

5.0

GLEIF LEI Lookup โ€” Entity Identifier & Ownership โœ…

themineworks/gleif-lei-lookup

Look up Legal Entity Identifiers (LEI) and registered company legal data from GLEIF: legal name, form, jurisdiction, addresses, status, BIC. By name or LEI. No API key. Works in Claude, ChatGPT & any MCP-compatible AI agent. MCP server: the-mine-works-mcp.hatchable.site

๐Ÿ‘ User avatar

The Mine Works

1

GLEIF Global Legal Entity Identifier (LEI) Scraper

parseforge/gleif-lei-scraper

Look up Legal Entity Identifier (LEI) records for any company worldwide. Returns 20-digit LEI, legal name, jurisdiction, status, headquarters, BIC, parent relationships, registration authority and renewal dates. Used for KYC, AML, due diligence and counterparty risk checks.

GLEIF LEI Lookup โ€” Counterparty Decision Engine

ryanclinton/gleif-lei-lookup

Turn GLEIF LEI data into onboarding decisions. Look up entities by name or LEI code and get a deterministic approve / review / EDD / reject verdict with risk scoring, ownership transparency, identity resolution, and cross-run monitoring. Built for KYB and counterparty screening.

37

You can access the GLEIF LEI Lookup programmatically from your own applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, youโ€™ll need an Apify account and your API token, found in Integrations settings in Apify Console.

๐Ÿ‘ Python

Python

๐Ÿ‘ JavaScript

JavaScript

CLI

๐Ÿ‘ OpenAPI

OpenAPI

HTTP

MCP

1from apify_client import ApifyClient
2
3# Initialize the ApifyClient with your Apify API token
4# Replace '<YOUR_API_TOKEN>' with your token.
5client = ApifyClient("<YOUR_API_TOKEN>")
6
7# Prepare the Actor input
8run_input ={
9"queries":[
10"Apple",
11"HWUPKR0MPOU8FGXBT394",
12],
13"countries":["US"],
14"maxRecords":600,
15}
16
17# Run the Actor and wait for it to finish
18run = client.actor("maximedupre/gleif-lei-lookup").call(run_input=run_input)
19
20# Fetch and print Actor results from the run's dataset (if there are any)
21print("๐Ÿ’พ Check your data here: https://console.apify.com/storage/datasets/"+ run["defaultDatasetId"])
22for item in client.dataset(run["defaultDatasetId"]).iterate_items():
23print(item)
24
25# ๐Ÿ“š Want to learn more ๐Ÿ“–? Go to โ†’ https://docs.apify.com/api/client/python/docs/quick-start

GLEIF LEI Lookup and Legal Entity Data API API in Python

The Apify API client for Python is the official library that allows you to use GLEIF LEI Lookup API in Python, providing convenience functions and automatic retries on errors.

Install the apify-client

$pip install apify-client

Other API clients include:

GLEIF LEI Lookup API in JavaScript

GLEIF LEI Lookup API through CLI

GLEIF LEI Lookup OpenAPI definition

GLEIF LEI Lookup API