Aadhar Based PAN Making Check API - PAN verification API authenticates PAN details instantly making KYC faster and safer, To check your PAN Card details online in India, you can opt for the pan card making status. If you want to check whether a PAN card number has been issued from your Aadhar card number by entering Aadhar card number, that is, whether PAN card is made from Aadhar card or not, then you can find out using this API Is - 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 | UID Number |
response.pan_made | string | Yes |
response.message | string | Congratulations, your PAN card is made from Aadhar card. |
https://api.dhboss.com/apicall/aadhar_base_pan_making_check/
aadhar_number=value&apikeyfill=value
<?php $url = "https://api.dhboss.com/apicall/aadhar_base_pan_making_check/"; $curl = curl_init($url); curl_setopt($curl, CURLOPT_URL, $url); curl_setopt($curl, CURLOPT_POST, true); curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); $data = 'aadhar_number=123456789000&apikeyfill=code'; curl_setopt($curl, CURLOPT_POSTFIELDS, $data); echo $response = curl_exec($curl); curl_close($curl); ?>
{ "code": 200, "status": "success", "response": { "uid_number": "UID Number", "pan_made": "Yes", "message": "Congratulations, your PAN card is made from Aadhar card." } }