API Documentation DH-Boss


Aadhar Based PAN Making Check API - DHBOSS API

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


GET/POST : AADHAR_BASE_PAN_MAKING_CHECK

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 UID Number
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/aadhar_base_pan_making_check/
API Call Request Parameters
aadhar_number=value&apikeyfill=value                                                   
API Call Example Request
<?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);

?>
API Hit Example Response
{
  "code": 200,
  "status": "success",
  "response": {
    "uid_number": "UID Number",
    "pan_made": "Yes",
    "message": "Congratulations, your PAN card is made from Aadhar card."
  }
}