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 authentication using JWT format |
Content-Type | Yes | Application/json |
Parameter | Type | Required | Description |
---|---|---|---|
tin_number | String | Yes | Taxpayer Identification Number (TIN) to be verified |
{
"tin_number": "12345678915"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the verification request |
data.tin_number | String | The TIN number that was verified |
data.cst_number | String | Central Sales Tax (CST) Number associated with the TIN |
data.dealer_name | String | Registered name of the taxpayer/business |
data.dealer_address | String | Registered address of the taxpayer/business |
data.state_name | String | State where the taxpayer is registered |
data.pan_number | String | Permanent Account Number (PAN) of the taxpayer |
data.registration_date | String | Date of TIN registration (YYYY-MM-DD format) |
data.valid_upto | String | Expiry date of the registration (YYYY-MM-DD format) |
data.registration_status | String | Current status of the registration (e.g., Active, Cancelled) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the verification was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
{
"data": {
"client_id": "tin_verification_bZNrBkyzCMfOfkqteenz",
"tin_number": "12345678915",
"cst_number": "12345678915",
"dealer_name": "RAM PERFURMERWORKS",
"dealer_address": "PLOT NO-XX-21",
"state_name": "Odisha",
"pan_number": "NOT AVAILABLE",
"registration_date": "1992-12-16",
"valid_upto": "2013-07-20",
"registration_status": "Cancelled"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 422,
"success": false,
"message": "Verification Failed.",
"message_code": "verification_failed"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/tin/tin-verification' \
--header 'Content-Type: application/json' \
--data-raw '{
"tin_number": "12345678915"
}'
{
"data": {
"client_id": "tin_verification_bZNrBkyzCMfOfkqteenz",
"tin_number": "12345678915",
"cst_number": "12345678915",
"dealer_name": "RAM PERFURMERWORKS",
"dealer_address": "PLOT NO-XX-21",
"state_name": "Odisha",
"pan_number": "NOT AVAILABLE",
"registration_date": "1992-12-16",
"valid_upto": "2013-07-20",
"registration_status": "Cancelled"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}