API Documentation DH-Boss


PAN Card Making Check By Aadhar Card API - DHBOSS API

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


GET/POST : PAN_MAKING_CHECKER_WITH_AADHAR

What is needed to use this API and how it will work is described below -
Your Api Key : Get API In Profile & eKYC

Input Parameters Detail
Name Type Description Mandatory
aadhar_number String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
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.






Call API URL
https://api.dhboss.com/apicall/pan_making_check_aadhar/
API Call Request Parameters
aadhar_number=value&apikeyfill=value                                                   
API Call Example Request
<?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;
?>
API Hit Example 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."
  }
}