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 | The PAN number to be verified (e.g., "EKRPR7936Z") |
{
"id_number": "EKRPR7936Z"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains the PAN verification details |
data.pan_number | String | The verified PAN number |
data.full_name | String | Full name of the PAN holder |
data.client_id | String | Unique identifier for the verification request |
data.category | String | Category of the PAN (person, company, etc.) |
status_code | Integer | HTTP status code of the response |
message | String | Additional information about the response |
success | Boolean | Indicates if the request was successful |
{
"data": {
"pan_number": "AAAPM1234L",
"full_name": "MUNNA BHAIYA",
"client_id": "pan_NZAOcvheHYtwohtkWQbH",
"category": "person"
},
"status_code": 200,
"message": "",
"success": true
}
{
"data": null,
"status_code": 422,
"message": "Invalid PAN",
"success": false
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan/pan' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "EKRPR7936Z"
}'
{
"data": {
"pan_number": "AAAPM1234L",
"full_name": "MUNNA BHAIYA",
"client_id": "pan_NZAOcvheHYtwohtkWQbH",
"category": "person"
},
"status_code": 200,
"message": "",
"success": true
}