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., ABCPD1234E) |
| full_name | string | Yes | Full name of the PAN cardholder as registered with the Income Tax Department |
| dob | string | Yes | Date of birth of the PAN cardholder in YYYY-MM-DD format (e.g., 2000-01-01) |
{
"id_number": "ABCPD1234E",
"full_name": "Munna Tripathi",
"dob": "2000-01-01"
}| Parameter | Type | Description |
|---|---|---|
| data | object | Contains verified PAN details and verification results |
| data.client_id | string | Unique identifier for this verification request generated by Surepass |
| data.pan_number | string | Verified PAN card number returned from the government database |
| data.full_name | string | Full name of the PAN cardholder as per official records |
| data.dob | string | Date of birth of the PAN cardholder in YYYY-MM-DD format |
| status_code | integer | HTTP status code indicating the result of the API call |
| success | boolean | Indicates whether the verification was successful (true/false) |
| message | string | Additional message providing context about the response (null if successful) |
| message_code | string | Code representing the status of the verification (e.g., "success") |
{
"data": {
"client_id": "pan_uczgEGvviRwwpxxzfGDp",
"pan_number": "ABCPD1234F",
"full_name": "Munna Tripathi",
"dob": "2000-01-01"
},
"status_code": 200,
"success": true,
"message": null,
"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/pan-verify' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id_number": "ABCPD1234E",
"full_name": "Munna Tripathi",
"dob": "2000-01-01"
}'{
"data": {
"client_id": "pan_uczgEGvviRwwpxxzfGDp",
"pan_number": "ABCPD1234F",
"full_name": "Munna Tripathi",
"dob": "2000-01-01"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}