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 |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
id_number | String | Yes | PAN Number to be verified (e.g., "EKRPR1234F") |
name | String | Yes | Full name as it appears on the PAN card |
dob | String | Yes | Date of birth in "YYYY-MM-DD" format (e.g., "2000-07-25") |
{
"id_number": "EKRPR1234F",
"name": "deepak rathore",
"dob": "2000-07-25"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the verification result data |
data.client_id | String | Unique identifier for the verification request |
data.pan_number | String | The PAN number that was verified |
data.name | String | Name of the individual as per official records |
data.dob | String | Date of birth in "YYYY-MM-DD" format as per official records |
data.pan_status | String | Current status of the PAN card |
data.name_status | String Enum | Indicates if the provided name matches the official record ("MATCHING" or "NON-MATCHING") |
data.dob_status | String Enum | Indicates if the provided DOB matches the official record ("MATCHING" or "NON-MATCHING") |
data.aadhaar_seeding_status | String Enum | Indicates if the PAN is linked with Aadhaar ("Operative PAN" or "Inoperative PAN") |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API call was successful |
message | String | Human-readable status message |
message_code | String | Machine-readable status code |
{
"data": {
"client_id": "pan_advanced_v3_edUkzeivGsiseWJyNcTp",
"pan_number": "EKRPR1234F",
"name": "Vishal Singh Rathore",
"dob": "2001-07-25",
"pan_status": "EXISTING AND VALID",
"name_status": "MATCHING",
"dob_status": "MATCHING",
"aadhaar_seeding_status": "Operative PAN"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"data": null,
"status_code": 422,
"message": "Invalid PAN",
"success": false,
"message_code": null
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan/pan-adv-v3' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "EKRPR1234F",
"name": "deepak rathore",
"dob": "2000-07-25"
}'
{
"data": {
"client_id": "pan_advanced_v3_edUkzeivGsiseWJyNcTp",
"pan_number": "EKRPR1234F",
"name": "Vishal Singh Rathore",
"dob": "2001-07-25",
"pan_status": "EXISTING AND VALID",
"name_status": "MATCHING",
"dob_status": "MATCHING",
"aadhaar_seeding_status": "Operative PAN"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}