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 | JWT Bearer token for authentication. Format: Bearer {TOKEN} |
| Content-Type | Yes | Must be set to application/json |
| Parameter | Type | Required | Description |
|---|---|---|---|
| id_number | string | Yes | Valid PAN card number in the format: 5 letters, 4 digits, 1 letter (e.g., ABCPD1234F) |
{
"id_number": "ABCPD1234F"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains retrieved contact information associated with the PAN |
| data.client_id | string | Unique identifier for this retrieval request generated by Surepass |
| data.id_number | string | PAN card number for which contact details were retrieved |
| data.email_id | array | List of email addresses registered with the PAN (may contain multiple entries) |
| data.mobile_number | array | List of mobile numbers registered with the PAN (may contain multiple entries) |
| status_code | integer | HTTP status code indicating the result of the API call |
| success | boolean | Indicates whether the retrieval was successful (true/false) |
| message | string | Additional message providing context about the response |
| message_code | string | Code representing the status of the operation (e.g., "success") |
{
"data": {
"client_id": "pan_to_email_mobile_dEONf",
"id_number": "ABCPD1234F",
"email_id": [
"MUNNATRIPATHI@GMAIL.COM",
"MUNNA1234@GMAIL.COM"
],
"mobile_number": [
"9876543210"
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"data": null,
"status_code": 400,
"success": false,
"message": "Invalid PAN format provided",
"message_code": "invalid_format"
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan-to-email-mobile/verification' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "ABCPD1234F"
}'{
"data": {
"client_id": "pan_to_email_mobile_dEONf",
"id_number": "ABCPD1234F",
"email_id": [
"MUNNATRIPATHI@GMAIL.COM",
"MUNNA1234@GMAIL.COM"
],
"mobile_number": [
"9876543210"
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}