Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token for authentication (JWT format) |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
company_name_search | String | Yes | The company name to search for |
{
"company_name_search": "Zucol"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the response data |
data.client_id | String | Unique identifier for the API request |
data.company_name_search | String | The company name that was searched |
data.company_list | Array | List of companies matching the search criteria |
data.company_list[].cin_number | String | Corporate Identification Number of the company |
data.company_list[].company_name | String | Official registered name of the company |
data.company_list[].company_type | String | Type of company (llp, opc, pvt_ltd, ltd, other) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Additional message (null if successful) |
message_code | String | Code indicating the status of the request |
{
"data": {
"client_id": "corporate_name_list_cdeKzMoltWosnhkeOmvs",
"company_name_search": "Zucol",
"company_list": [
{
"cin_number": "U74995RJ2018PTC0123456",
"company_name": "ZUCOL SERVICES PRIVATE LIMITED",
"company_type": "pvt_ltd"
},
{
"cin_number": "U74999RJ2019PTC0987456",
"company_name": "ZUCOL SOLUTIONS PRIVATE LIMITED",
"company_type": "pvt_ltd"
},
{
"cin_number": "ACE-1234",
"company_name": "ZUCOL WEALTH SOLUTIONS LLP",
"company_type": "llp"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"status_code": 401,
"success": false,
"message": "Invalid or expired token",
"message_code": "unauthorized"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/name-to-cin-list' \
--header 'Content-Type: application/json' \
--data-raw '{
"company_name_search": "Zucol"
}'
{
"data": {
"client_id": "corporate_name_list_cdeKzMoltWosnhkeOmvs",
"company_name_search": "Zucol",
"company_list": [
{
"cin_number": "U74995RJ2018PTC0123456",
"company_name": "ZUCOL SERVICES PRIVATE LIMITED",
"company_type": "pvt_ltd"
},
{
"cin_number": "U74999RJ2019PTC0987456",
"company_name": "ZUCOL SOLUTIONS PRIVATE LIMITED",
"company_type": "pvt_ltd"
},
{
"cin_number": "ACE-1234",
"company_name": "ZUCOL WEALTH SOLUTIONS LLP",
"company_type": "llp"
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}