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 |
---|---|---|---|
pan_number | String | Yes | The PAN (Permanent Account Number) to be verified (e.g., "AABBCH0123H") |
{
"pan_number": "AABBCH0123H"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the response data |
data.client_id | String | Unique identifier for the verification request |
data.pan_number | String | The PAN number that was verified |
data.compliant | Boolean | Indicates whether the PAN is compliant with regulations |
data.pan_allotment_date | String | Date when the PAN was allotted (YYYY-MM-DD format) |
data.masked_name | String | Partially masked name of the PAN holder |
data.pan_aadhaar_linked | String | Status of PAN-Aadhaar linkage ("linked" or "not linked") |
data.specified_person_under_206 | String | Indicates if the person falls under section 206 ("yes" or "no") |
data.pan_status | String | Current status of the PAN ("operative" or "inoperative") |
data.valid_pan | Boolean | Indicates if the PAN is valid |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API call was successful |
message | String | Human-readable message about the response |
message_code | String | Code representing the message type |
{
"data": {
"client_id": "itr_compliance_YRjwwjZcGULvxYvlyLFq",
"pan_number": "AAAAA1111A",
"compliant": true,
"pan_allotment_date": "2019-09-20",
"masked_name": "VXXXXL SXXXH RXXXXXE ",
"pan_aadhaar_linked": "linked",
"specified_person_under_206": "no",
"pan_status": "operative",
"valid_pan": true
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"data": {
"client_id": "itr_compliance_YRjwwjZcGULvxYvlyLFq",
"pan_number": "INVALID123",
"valid_pan": false
},
"status_code": 400,
"success": false,
"message": "Invalid PAN format",
"message_code": "invalid_pan_format"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/itr/itr-compliance-check' \
--header 'Content-Type: application/json' \
--data-raw '{
"pan_number": "AABBCH0123H"
}'
{
"data": {
"client_id": "itr_compliance_YRjwwjZcGULvxYvlyLFq",
"pan_number": "AAAAA1111A",
"compliant": true,
"pan_allotment_date": "2019-09-20",
"masked_name": "VXXXXL SXXXH RXXXXXE ",
"pan_aadhaar_linked": "linked",
"specified_person_under_206": "no",
"pan_status": "operative",
"valid_pan": true
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}