Feel free to reach techsupport@surepass.io for any technical support or guidance.
title
field can have the following values:pan_status
field can have the following values:Code | Meaning |
---|---|
E | Existing and valid PAN |
F | Fake PAN |
X | Deactivated PAN |
D | Deleted PAN |
N | Invalid PAN |
EA | Amalgamation |
EC | Acquisition |
ED | Death |
EI | Existing and Valid but event marked as “Dissolution” in ITD database |
EL | Existing and Valid but event marked as “Liquidated” in ITD database |
EM | Existing and Valid but event marked as “Merger” in ITD database |
EP | Existing and Valid but event marked as “Partition” in ITD database |
ES | Existing and Valid but event marked as “Split” in ITD database |
EU | Existing and Valid but event marked as “Under Liquidation” in ITD database |
I | Inoperative |
aadhaar_seeding_status
field can have the following values:category
field can have the following values: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., "EKRPR7936Z") |
{
"id_number": "EKRPR7936Z"
}
Parameter | Type | Description |
---|---|---|
data | Object | Container for the response data |
data.client_id | String | Unique identifier for the verification request |
data.pan_number | String | PAN Card number that was verified |
data.full_name | String | Full name of the PAN holder |
data.title | String | Title of the PAN holder (e.g., "Shri") |
data.full_name_split | Array | Name components [First Name, Middle Name, Last Name] |
data.pan_status | String | Status code of the PAN (e.g., "E" for existing) |
data.pan_status_desc | String | Detailed description of the PAN status |
data.aadhaar_seeding_status | String | Aadhaar seeding status code (e.g., "Y" for successful) |
data.aadhaar_seeding_status_desc | String | Detailed description of Aadhaar seeding status |
data.pan_modified_date | String | Date when PAN was last modified (YYYY-MM-DD format) |
data.category | String | Category of the PAN holder (e.g., "person", "company") |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API call was successful |
message | String | Additional message (null if successful) |
message_code | String | Code indicating the status of the request |
{
"data": {
"client_id": "pan_advanced_wykZaletbbHVqwcwLVkx",
"pan_number": "RKRPR7936F",
"full_name": "AMAR SINGH RATHORE",
"title": "Shri",
"full_name_split": [
"AMAR",
"SINGH",
"RATHORE"
],
"pan_status": "E",
"pan_status_desc": "EXISTING AND VALID",
"aadhaar_seeding_status": "Y",
"aadhaar_seeding_status_desc": "Aadhaar Seeding is Successful",
"pan_modified_date": "2018-11-05",
"category": "person"
},
"status_code": 200,
"success": true,
"message": null,
"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' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "EKRPR7936Z"
}'
{
"data": {
"client_id": "pan_advanced_wykZaletbbHVqwcwLVkx",
"pan_number": "RKRPR7936F",
"full_name": "AMAR SINGH RATHORE",
"title": "Shri",
"full_name_split": [
"AMAR",
"SINGH",
"RATHORE"
],
"pan_status": "E",
"pan_status_desc": "EXISTING AND VALID",
"aadhaar_seeding_status": "Y",
"aadhaar_seeding_status_desc": "Aadhaar Seeding is Successful",
"pan_modified_date": "2018-11-05",
"category": "person"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}