# GLEIF โ€” Zapi reference > Legal Entity Identifier โ€” resolusi nama badan hukum ke kode LEI global beserta yurisdiksi dan status registrasinya. **Base URL:** `https://api.zpi.web.id` **Auth:** Send `x-api-key: YOUR_KEY` header on every request. Get a free key at https://zpi.web.id/dashboard/keys. **Response envelope:** `{ status, message, content }` **Rate limit:** 60 req/min on free tier. **Related:** - Detail page: https://zpi.web.id/api/finance/gleif - Endpoint catalog: https://zpi.web.id/category/finance - Concise index: https://zpi.web.id/llms.txt - Full reference: https://zpi.web.id/llms-full.txt --- ## GLEIF **Category:** finance ยท **Slug:** `gleif` **Detail page:** https://zpi.web.id/api/finance/gleif Legal Entity Identifier โ€” resolusi nama badan hukum ke kode LEI global beserta yurisdiksi dan status registrasinya. **Tags:** lei, gleif, entity, compliance, finance ### LEI Records Cari badan hukum berdasarkan nama atau kode LEI, bisa disaring per negara alamat resmi. - **Method:** `GET` - **Endpoint:** `https://api.zpi.web.id/v1/finance:gleif/lei` - **Cache TTL:** 86400s **Parameters:** | Name | Type | Location | Required | Description | |------|------|----------|----------|-------------| | `query` | string | query | no | Legal name to search. Required unless `lei` is set. | | `lei` | string | query | no | Exact 20-character LEI code. | | `country` | string | query | no | ISO country code of the legal address. | | `length` | number | query | no | Rows to return (default 10, max 100) | **cURL:** ```bash curl "https://api.zpi.web.id/v1/finance:gleif/lei?query=Astra&lei=5493000QI5S7XZK2WE84&country=ID&length=10" \ -H "x-api-key: YOUR_API_KEY" ``` **JavaScript / TypeScript:** ```javascript const res = await fetch("https://api.zpi.web.id/v1/finance:gleif/lei?query=Astra&lei=5493000QI5S7XZK2WE84&country=ID&length=10", { headers: { "x-api-key": process.env.ZAPI_KEY } }); const data = await res.json(); ``` **Python:** ```python import requests r = requests.get("https://api.zpi.web.id/v1/finance:gleif/lei?query=Astra&lei=5493000QI5S7XZK2WE84&country=ID&length=10", headers={"x-api-key": "YOUR_API_KEY"}) data = r.json() ``` **Example response:** ```json { "count": 8, "items": [ { "lei": "984500DA1C0AE7396331", "city": "JAKARTA UTARA", "name": "TOYOTA-ASTRA MOTOR", "status": "ACTIVE", "country": "ID", "legalForm": "UD1V", "lastUpdated": "2026-03-03T16:48:14Z", "nextRenewal": "2027-03-12T13:58:46Z", "jurisdiction": "ID", "registrationStatus": "ISSUED" }, { "lei": "2549004O1G02EQJHGT25", "city": "Jakarta", "name": "PT Asuransi Jiwa Astra", "status": "ACTIVE", "country": "ID", "legalForm": "UD1V", "lastUpdated": "2026-04-24T19:21:50Z", "nextRenewal": "2027-04-24T19:21:50Z", "jurisdiction": "ID", "registrationStatus": "ISSUED" }, { "lei": "984500DE704KE7E4F569", "city": "JAGAKARSA", "name": "PT Astra Auto Finance", "status": "ACTIVE", "country": "ID", "legalForm": "UD1V", "lastUpdated": "2026-04-17T11:33:50Z", "nextRenewal": "2027-04-25T15:03:07Z", "jurisdiction": "ID", "registrationStatus": "ISSUED" }, { "lei": "254900IJU6661H8U3Z49", "city": "Jakarta", "name": "PT Komatsu Astra Finance", "status": "ACTIVE", "country": "ID", "legalForm": "UD1V", "lastUpdated": "2023-05-31T11:17:21Z", "nextRenewal": "2020-06-28T14:12:27Z", "jurisdiction": "ID", "registrationStatus": "LAPSED" }, { "lei": "529900L49TRJOMG4DK47", "city": "Jakarta", "name": "PT Astra International TBK", "status": "ACTIVE", "country": "ID", "legalForm": "8888", "lastUpdated": "2021-11-18T13:12:29Z", "nextRenewal": "2019-11-29T10:10:23Z", "jurisdiction": "ID", "registrationStatus": "LAPSED" }, { "lei": "254900ZHU2OE8Y8HHT28", "city": "Jakarta Selatan", "name": "PT ASTRA SEDAYA FINANCE", "status": "ACTIVE", "country": "ID", "legalForm": "UD1V", "lastUpdated": "2026-04-02T14:06:45Z", "nextRenewal": "2027-04-02T14:06:45Z", "jurisdiction": "ID", "registrationStatus": "ISSUED" }, { "lei": "213800RODUR1B5CAL145", "city": "JAKARTA", "name": "PT ASTRA AVIVA LIFE", "status": "ACTIVE", "country": "ID", "legalForm": "8888", "lastUpdated": "2024-11-13T08:44:31Z", "nextRenewal": "2020-12-31T00:00:00Z", "jurisdiction": "ID", "registrationStatus": "LAPSED" }, { "lei": "529900XU6T7VIQ56SN17", "city": "Jakarta", "name": "PT Astra Agro Lestari TBK", "status": "ACTIVE", "country": "ID", "legalForm": "8888", "lastUpdated": "2021-11-18T13:12:36Z", "nextRenewal": "2020-03-29T15:35:36Z", "jurisdiction": "ID", "registrationStatus": "LAPSED" } ], "query": "Astra", "total": 9, "source": "gleif", "country": "ID" } ``` --- _Generated: 2026-08-08T12:06:41.698Z_