LEI Verification
LEI, short for Legal Entity Identifier, is a unique 20-character alphanumeric code assigned to legal entities participating in financial transactions, as defined by the ISO 17442 standard.
API Integration
LEI verification can be performed using the Verify LEI API
Request
{
"leiNo": "3358008J1F38JKKWXK61"
}
Response
If the LEI is valid the response will be of the following format.
{
"code": 0,
"message": "Success",
"data": {
"lei": "3358008J1F38JKKWXK61",
"legalName": "...",
"status": "ACTIVE",
"country": "...",
"registrationDate": "...",
"lastUpdateDate": "..."
}
}
If the LEI is invalid the response will be of the following format.
{
"message": "Invalid LEI pattern"
}