Any PAN cardholder can verify PAN details through PAN Verification API in three ways. Using this process the KYC verification can be done instantly. PAN verification gives the following information about a tax payer. Name Of Holder PAN card holder's name as registered in ITD. Check full pan card holder name and father name with pan aadhar linking status using pan card number for api facility. PAN verification API is a system which helps an enterprise to authenticate the PAN card of any individual with highest accuracy in record time - docs.dhboss.com
What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC
Name | Type | Description | Mandatory |
---|---|---|---|
pan_no | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.pan_no | string | AAAPA0000A |
response.category | string | INDIVIDUAL |
response.identity_type | string | P |
response.holder_name | string | Dummy Full Name |
response.first_name | string | Dummy First Name |
response.middle_name | string | Dummy Middle Name |
response.last_name | string | Dummy Last Name |
https://api.dhboss.com/apicall/pan_verification/
pan_no=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/pan_verification/', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => 'apikeyfill=code&pan_no=AAAPA0000A', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "pan_no": "AAAPA0000A", "category": "INDIVIDUAL", "identity_type": "P", "holder_name": "Dummy Full Name", "first_name": "Dummy First Name", "middle_name": "Dummy Middle Name", "last_name": "Dummy Last Name" } }