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., "AVVPA1234L") |
{
"id_number": "AVVPA1234L"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the verification results |
data.client_id | String | Unique identifier for the verification request |
data.pan_number | String | PAN number that was verified |
data.pan_details | Object | Comprehensive details associated with the PAN |
data.less_info | Boolean | Indicates if limited information was returned |
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 |
Parameter | Type | Description |
---|---|---|
full_name | String | Complete name of the PAN holder |
full_name_split | Array | Name split into [First Name, Middle Name, Last Name] |
masked_aadhaar | String | Partially masked Aadhaar number linked to the PAN |
address | Object | Structured address information |
String | Email address of the PAN holder | |
phone_number | String | Mobile number of the PAN holder |
gender | String | Gender of the PAN holder (e.g., "M" for Male) |
dob | String | Date of birth in YYYY-MM-DD format |
input_dob | String | Input date of birth (if provided) in YYYY-MM-DD format |
aadhaar_linked | Boolean | Whether the PAN is linked to Aadhaar |
dob_verified | Boolean | Whether the date of birth has been verified |
dob_check | Boolean | Result of date of birth validation check |
category | String | Category of the PAN (e.g., "person", "company") |
father_name | String | Name of the PAN holder's father |
Parameter | Type | Description |
---|---|---|
line_1 | String | House/building number |
line_2 | String | Colony/society name |
street_name | String | Street name |
zip | String | Postal code/PIN code |
city | String | City name |
state | String | State name |
country | String | Country name |
full | String | Complete address as a single string |
{
"data": {
"client_id": "pan_comprehensive_plus_SiCaniPfvZzkbsJgUwfn",
"pan_number": "AVVPA1234L",
"pan_details": {
"full_name": "KARAN ARORA",
"full_name_split": [
"KARAN",
"",
"ARORA"
],
"masked_aadhaar": "XXXXXXXX1234",
"address": {
"line_1": "1560",
"line_2": "",
"street_name": "XYZ COLONY",
"zip": "110000",
"city": "DELHI",
"state": "",
"country": "",
"full": "1560 XYZ COLONY 110000 DELHI"
},
"email": "Karora12345@gmail.com",
"phone_number": "9873212345",
"gender": "M",
"dob": "1992-09-30",
"input_dob": null,
"aadhaar_linked": true,
"dob_verified": false,
"dob_check": false,
"category": "person",
"father_name": "RAMESH"
},
"less_info": false
},
"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-comprehensive-plus' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "AVVPA1234L"
}'
{
"data": {
"client_id": "pan_comprehensive_plus_SiCaniPfvZzkbsJgUwfn",
"pan_number": "AVVPA1234L",
"pan_details": {
"full_name": "KARAN ARORA",
"full_name_split": [
"KARAN",
"",
"ARORA"
],
"masked_aadhaar": "XXXXXXXX1234",
"address": {
"line_1": "1560",
"line_2": "",
"street_name": "XYZ COLONY",
"zip": "110000",
"city": "DELHI",
"state": "",
"country": "",
"full": "1560 XYZ COLONY 110000 DELHI"
},
"email": "Karora12345@gmail.com",
"phone_number": "9873212345",
"gender": "M",
"dob": "1992-09-30",
"input_dob": null,
"aadhaar_linked": true,
"dob_verified": false,
"dob_check": false,
"category": "person",
"father_name": "RAMESH"
},
"less_info": false
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}