Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for API authentication (JWT format) |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| mobile_number | string | Yes | 10-digit Indian mobile number without country code or special characters |
| name | string | No | Full name of the PAN holder as per official records |
{
"mobile_number": "9876543210",
"name": "Arvind Kumar Singh"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Container object for verification results |
| data.client_id | string | Unique identifier for this verification request |
| data.name | string | Full name of the PAN holder as per official records |
| data.mobile_number | string | Verified mobile number associated with the PAN |
| data.pan_number | string | 10-character PAN number in standard format |
| status_code | integer | HTTP status code indicating request outcome |
| success | boolean | Indicates whether the verification was successful |
| message | string | Human-readable response message |
| message_code | string | Machine-readable response code for programmatic handling |
{
"data": {
"client_id": "mobile_to_pan_adv_avoglYdKwzAkalClhsnr",
"name": "Arvind Kumar Singh",
"mobile_number": "9876543210",
"pan_number": "ABCDE1234F"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 401,
"success": false,
"message": "Invalid or expired authentication token",
"message_code": "authentication_failed"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan/mobile-to-pan-adv' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "9876543210",
"name": "Arvind Kumar Singh"
}'{
"data": {
"client_id": "mobile_to_pan_adv_avoglYdKwzAkalClhsnr",
"name": "Arvind Kumar Singh",
"mobile_number": "9876543210",
"pan_number": "ABCDE1234F"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}