Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization header as Bearer YOUR_JWT_TOKEN.https://sandbox.surepass.apphttps://kyc-api.surepass.app| Header | Required | Description |
|---|---|---|
| Authorization | Yes | Bearer token for authentication. Format: Bearer YOUR_JWT_TOKEN |
| 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. Must be a valid active mobile number registered with telecom providers. |
{
"mobile_number": "9876543210"
}| Parameter | Type | Description |
|---|---|---|
| success | boolean | Indicates whether the API request was successful (true/false) |
| status_code | integer | HTTP status code of the response (200 for success) |
| message | string | Human-readable message describing the response status |
| message_code | string | Machine-readable code for programmatic handling ("success" for successful requests) |
| data | object | Container object holding the response payload |
| data.client_id | string | Unique identifier for tracking this specific API request |
| data.mobile_number | string | The mobile number that was queried |
| data.pan_number | string | PAN number associated with the mobile number (format: 5 letters + 4 digits + 1 letter) |
| data.status | string | Status of the verification process ("success" indicates PAN was found) |
{
"data": {
"client_id": "mobile_to_pan_v2_rKObqxLbiOtBjoFobkfY",
"mobile_number": "9876543210",
"pan_number": "ABCPD1234E",
"status": "success"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}{
"success": false,
"status_code": 400,
"message": "Invalid mobile number format",
"message_code": "invalid_input",
"data": null
}curl --location --request POST 'https://kyc-api.surepass.app/api/v1/pan/mobile-to-pan-v2' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"mobile_number": "9876543210"
}'{
"data": {
"client_id": "mobile_to_pan_v2_rKObqxLbiOtBjoFobkfY",
"mobile_number": "9876543210",
"pan_number": "ABCPD1234E",
"status": "success"
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}