Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.iohttps://kyc-api.surepass.io| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication (JWT format) |
| Content-Type | Yes | application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| lei_code | String | Yes | Legal Entity Identifier Number to be validated |
{
"lei_code": "12345678987"
}| Parameter | Type | Description |
|---|---|---|
| data | Object | Contains all the entity information |
| data.client_id | String | Unique Client ID generated by the system |
| data.lei_number | String | LEI Number (null if not found) |
| data.full_name | String | Entity's full legal name |
| data.legal_entity_address | Object | Entity's registered address details |
| data.headquarters_entity_address | Object | Entity's headquarters address details |
| data.entity_identifiers | Object | Entity's registration and identification details |
| status_code | Integer | HTTP status code of the response |
| success | Boolean | Indicates if the request was successful |
| message | String | Response message |
| message_code | String | Code representing the response message |
| Parameter | Type | Description |
|---|---|---|
| registered_first_address_line | String | Full address of legal entity |
| additional_address_line_1 | String | Additional address details |
| additional_address_line_2 | String | Additional address details |
| additional_address_line_3 | String | Additional address details |
| country | String | Entity country name |
| region | String | Entity region name |
| city | String | Entity city name |
| zipcode | String | Postal/ZIP code |
| Parameter | Type | Description |
|---|---|---|
| registered_first_address_line | String | Full address of headquarters |
| additional_address_line_1 | String | Additional address details |
| additional_address_line_2 | String | Additional address details |
| additional_address_line_3 | String | Additional address details |
| country | String | Headquarters country name |
| region | String | Headquarters region name |
| city | String | Headquarters city name |
| zipcode | String | Postal/ZIP code |
| Parameter | Type | Description |
|---|---|---|
| registration_authority_name | String | Name of the registration authority |
| registration_authority_id | String | ID assigned by the registration authority |
| jurisdiction | String | Legal jurisdiction code |
| legal_form | String | Entity legal form description |
| lei_registration_date | String | Initial LEI registration date (YYYY-MM-DD) |
| lei_registration_last_update | String | Last update date of LEI (YYYY-MM-DD) |
| entity_status | String | Current status of the entity (e.g., ACTIVE) |
| entity_expiration_date | String | Entity expiry date if applicable (YYYY-MM-DD) |
| lei_next_renewal_date | String | Next LEI renewal date (YYYY-MM-DD) |
| entity_expiration_reason | String | Reason for expiration if applicable |
| lei_registration_status | String | Current LEI registration status |
| succsessor_lei | String | Successor LEI if entity has merged or changed |
| lou_id | String | Local Operating Unit ID |
| lei_validation_source | String | Source used for LEI validation |
{
"data": {
"client_id": "lei_HcgafcYhJlqFsExmmwjA",
"lei_number": null,
"full_name": "ENERGY PVT LTD",
"legal_entity_address": {
"registered_first_address_line": "NAYAPALLI BHUBANESWAR",
"additional_address_line_1": "",
"additional_address_line_2": "",
"additional_address_line_3": "",
"country": "India",
"region": "Odisha",
"city": "XXXXX",
"zipcode": "XXXXXX"
},
"headquarters_entity_address": {
"registered_first_address_line": "NAYAPALLI BHUBANESWAR",
"additional_address_line_1": "",
"additional_address_line_2": "",
"additional_address_line_3": "",
"country": "India",
"region": "Odisha",
"city": "XXXXX",
"zipcode": "XXXXXX"
},
"entity_identifiers": {
"registration_authority_name": "Ministry of Corporate Affairs",
"registration_authority_id": "XXXXXXXXXXXXXXXXXXXXXXXXXX",
"jurisdiction": "IN",
"legal_form": "Private Limited Companies",
"lei_registration_date": "0000-06-11",
"lei_registration_last_update": "0000-06-12",
"entity_status": "ACTIVE",
"entity_expiration_date": "",
"lei_next_renewal_date": "0000-06-11",
"entity_expiration_reason": "",
"lei_registration_status": "LAPSED",
"succsessor_lei": "",
"lou_id": "LEIL",
"lei_validation_source": "XXXXXXXXXX"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid LEI code format",
"message_code": "invalid_lei_format"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/lei-validation/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"lei_code": "12345678987"
}'{
"data": {
"client_id": "lei_HcgafcYhJlqFsExmmwjA",
"lei_number": null,
"full_name": "ENERGY PVT LTD",
"legal_entity_address": {
"registered_first_address_line": "NAYAPALLI BHUBANESWAR",
"additional_address_line_1": "",
"additional_address_line_2": "",
"additional_address_line_3": "",
"country": "India",
"region": "Odisha",
"city": "XXXXX",
"zipcode": "XXXXXX"
},
"headquarters_entity_address": {
"registered_first_address_line":"NAYAPALLI BHUBANESWAR",
"additional_address_line_1": "",
"additional_address_line_2": "",
"additional_address_line_3": "",
"country": "India",
"region": "Odisha",
"city": "XXXXX",
"zipcode": "XXXXXX"
},
"entity_identifiers": {
"registration_authority_name": "Ministry of Corporate Affairs",
"registration_authority_id": "XXXXXXXXXXXXXXXXXXXXXXXXXX",
"jurisdiction": "IN",
"legal_form": "Private Limited Companies",
"lei_registration_date": "0000-06-11",
"lei_registration_last_update": "0000-06-12",
"entity_status": "ACTIVE",
"entity_expiration_date": "",
"lei_next_renewal_date": "0000-06-11",
"entity_expiration_reason": "",
"lei_registration_status": "LAPSED",
"succsessor_lei": "",
"lou_id": "LEIL",
"lei_validation_source": "XXXXXXXXXX"
}
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}