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 Card Number to be verified (e.g., "EKRPR1234F") |
{
"id_number": "EKRPR1234F"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains all the PAN verification details |
data.client_id | String | Unique client identifier for the request |
data.pan_number | String | PAN (Permanent Account Number) of the person |
data.full_name | String | Full name of the PAN holder |
data.title | String | Title or salutation (e.g., Shri, Smt, M/s) |
data.full_name_split | Array | Full name split into components (first name, middle name, last name) |
data.pan_status | String | PAN status code (E: Existing and valid PAN) |
data.pan_status_desc | String | Description of PAN status |
data.aadhaar_seeding_status | String | Aadhaar seeding status code (Y: Seeded, R: Not seeded, NA: Not applicable) |
data.aadhaar_seeding_status_desc | String | Description of Aadhaar seeding status |
data.pan_modified_date | String/null | Date when PAN was last modified (if available) |
data.category | String | Category of the entity (person, company, firm, etc.) |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the API call was successful |
message | String/null | Additional message (if any) |
message_code | String | Code indicating the status of the request |
{
"data": {
"client_id": "pan_advanced_v2_svRDkKzelWrlDyHnonNO",
"pan_number": "EKRPR1234F",
"full_name": "VISHAL RATHORE",
"title": "Shri",
"full_name_split": [
"VISHAL",
"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": null,
"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-v2' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "EKRPR1234F"
}'
{
"data": {
"client_id": "pan_advanced_v2_svRDkKzelWrlDyHnonNO",
"pan_number": "EKRPR1234F",
"full_name": "VISHAL RATHORE",
"title": "Shri",
"full_name_split": [
"VISHAL",
"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": null,
"category": "person"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}