Now find out whether your PAN card is made from your Aadhar card or not, if you want to check through API whether any PAN card is made from your Aadhar card or not, then you can find out by using this API. The complete information about how it will happen is given below. - 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 |
---|---|---|---|
aadhar_number | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
code | integer | 200 |
status | string | success |
response.UID_Number | string | 000000000000 |
response.Hidden_PAN_Number | string | AA******0A |
response.pan_made | string | Yes |
response.Message | string | Congratulations, your PAN card is made from Aadhar card. |
https://api.dhboss.com/apicall/pan_making_check_aadhar/
aadhar_number=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/pan_making_check_aadhar/', 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&aadhar_number=123456789000', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "status": "success", "response": { "UID_Number": "000000000000", "Hidden_PAN_Number": "AA******0A", "pan_made": "Yes", "Message": "Congratulations, your PAN card is made from Aadhar card." } }