/api/v1/lei-recordsSearch and retrieve official GLEIF LEI records. Without a path LEI this is the LEI-record collection and supports entity-name, country, status and mapped-identifier filters. With a 20-character LEI appended as a path segment it returns the canonical record for that legal entity. The response is JSON:API and includes the LEI, primary legal name, other names, legal and headquarters addresses, jurisdiction, legal form, entity status, registration authority, LEI registration status and registration/renewal dates; mapped identifiers and relationship links may also be present.
{
"filter[bic]": {
"description": "BIC mapped to an LEI. Used to resolve a bank/business identifier to legal entities.",
"required": false,
"type": "string"
},
"filter[entity.legalAddress.country]": {
"description": "ISO 3166-1 alpha-2 country code used to narrow entity results, for example NL or DE.",
"pattern": "^[A-Z]{2}$",
"required": false,
"type": "string"
},
"filter[entity.names]": {
"description": "Legal entity/company name search term. Used by Apiosk company-name search and LEI resolution.",
"required": false,
"type": "string"
},
"filter[entity.status]": {
"description": "Entity status filter, for example ACTIVE.",
"required": false,
"type": "string"
},
"lei": {
"description": "20-character Legal Entity Identifier. When supplied, retrieve that single LEI record.",
"pattern": "^[A-Z0-9]{20}$",
"required": false,
"type": "string",
"x-parameter-location": "path"
},
"page[size]": {
"description": "Requested result page size.",
"required": false,
"type": "integer"
}
}{
"properties": {
"data": {
"description": "JSON:API resource object for a single LEI lookup or array of resource objects for collection search.",
"oneOf": [
{
"type": "object"
},
{
"items": {
"type": "object"
},
"type": "array"
}
]
},
"included": {
"items": {
"type": "object"
},
"type": "array"
},
"links": {
"type": "object"
},
"meta": {
"type": "object"
}
},
"type": "object"
}{
"data": [
{
"attributes": {
"entity": {
"legalAddress": {
"country": "NL"
},
"legalName": {
"name": "Example Legal Entity"
},
"status": "ACTIVE"
},
"lei": "HWUPKR0MPOU8FGXBT394",
"registration": {
"status": "ISSUED"
}
},
"id": "HWUPKR0MPOU8FGXBT394",
"type": "lei-records"
}
]
}