Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication. Format: Bearer {JWT_TOKEN} |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| pan_number | string | Yes | Valid PAN (Permanent Account Number) of the company. Must be 10 characters alphanumeric format (e.g., AAACM3484F) |
{
"pan_number": "AAACM3484F"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object holding all company information |
| data.client_id | string | Unique identifier for this API request transaction |
| data.cin_number | string | Corporate Identification Number assigned by MCA |
| data.company_name_search | string | Company name as registered in search records |
| data.company_name | string | Official registered company name |
| data.company_type | string | Type of company entity (e.g., "ltd" for Limited) |
| status_code | integer | HTTP status code of the response (200 for success) |
| success | boolean | Indicates whether the request was successful |
| message | string/null | Additional message or error description (null on success) |
| message_code | string | Status code identifier (e.g., "success") |
{
"data": {
"client_id": "corporate_pan_cin_wNdvfmZTEyDBaiNAeZdg",
"cin_number": "L64200MH1986PLC041370",
"company_name_search": "TECH MAHINDRA LIMITED",
"company_name": "TECH MAHINDRA LIMITED",
"company_type": "ltd"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid PAN number format",
"message_code": "invalid_input"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/corporate/pan-to-cin' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"pan_number": "AAACM3484F"
}'{
"data": {
"client_id": "corporate_pan_cin_wNdvfmZTEyDBaiNAeZdg",
"cin_number": "L64200MH1986PLC041370",
"company_name_search": "TECH MAHINDRA LIMITED",
"company_name": "TECH MAHINDRA LIMITED",
"company_type": "ltd"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}