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 |
---|---|---|---|
id_number | String | Yes | The PAN (Permanent Account Number) to be verified. Must be a valid 10-character alphanumeric PAN. |
{
"id_number": "AGYPP1234F"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains all the verification data |
data.client_id | String | Unique identifier for the verification request |
data.pan_number | String | The PAN number that was verified |
data.pan_details | Object | Comprehensive details of the PAN holder |
data.is_sole_proprietor | Boolean | Indicates if the individual is registered as a sole proprietor |
data.is_director | Boolean | Indicates if the individual is registered as a company director |
data.is_salaried | Boolean | Indicates if the individual is registered as a salaried employee |
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 components split into individual elements |
masked_aadhaar | String | Partially masked Aadhaar number if linked to the PAN |
address | Object | Detailed address information |
String | Email address of the PAN holder | |
phone_number | String | Contact number of the PAN holder |
gender | String | Gender of the PAN holder (M/F/O) |
dob | String | Date of birth in YYYY-MM-DD format |
input_dob | String | Date of birth provided in the input (if any) |
aadhaar_linked | Boolean | Indicates if Aadhaar is linked to the PAN |
dob_verified | Boolean | Indicates if the date of birth has been verified |
dob_check | Boolean | Indicates if date of birth check was performed |
category | String | Category of the PAN holder (e.g., "person") |
less_info | Boolean | Indicates if limited information is available |
Parameter | Type | Description |
---|---|---|
line_1 | String | First line of the address (building/house number) |
line_2 | String | Second line of the address (if available) |
street_name | String | Street or locality name |
zip | String | Postal/ZIP code |
city | String | City name |
state | String | State name |
country | String | Country name |
full | String | Complete formatted address as a single string |
{
"data": {
"client_id": "pan_comprehensive_v2_teyfYScxeXbuRtbbnPqd",
"pan_number": "ACNPR3826N",
"pan_details": {
"full_name": "MUNNA BHAIYA",
"full_name_split": [
"MUNNA",
"BHAIYA"
],
"masked_aadhaar": "XXXXXXXX1234",
"address": {
"line_1": "A-123",
"line_2": "",
"street_name": "Mirzapur",
"zip": "302017",
"city": "Mirzapur",
"state": "",
"country": "INDIA",
"full": "A-102/3S.F.S. Mirzapur 302017 Uttarpradesh INDIA"
},
"email": "abhitest@gmail.com",
"phone_number": "9878564524",
"gender": "M",
"dob": "1961-06-12",
"input_dob": null,
"aadhaar_linked": true,
"dob_verified": false,
"dob_check": false,
"category": "person",
"less_info": false
},
"is_sole_proprietor": true,
"is_director": true,
"is_salaried": true
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"data": null,
"status_code": 422,
"message": "Invalid PAN",
"success": false
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan/pan-comprehensive-v2' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "AGYPP1234F"
}'
{
"data": {
"client_id": "pan_comprehensive_v2_teyfYScxeXbuRtbbnPqd",
"pan_number": "ACNPR3826N",
"pan_details": {
"full_name": "MUNNA BHAIYA",
"full_name_split": [
"MUNNA",
"BHAIYA"
],
"masked_aadhaar": "XXXXXXXX1234",
"address": {
"line_1": "A-123",
"line_2": "",
"street_name": "Mirzapur",
"zip": "302017",
"city": "Mirzapur",
"state": "",
"country": "INDIA",
"full": "A-102/3S.F.S. Mirzapur 302017 Uttarpradesh INDIA"
},
"email": "abhitest@gmail.com",
"phone_number": "9878564524",
"gender": "M",
"dob": "1961-06-12",
"input_dob": null,
"aadhaar_linked": true,
"dob_verified": false,
"dob_check": false,
"category": "person",
"less_info": false
},
"is_sole_proprietor": true,
"is_director": true,
"is_salaried": true
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}