API Documentation DH-Boss


PAN Aadhar Link Status Api - DHBOSS API

PAN Aadhar Link Status Api - Check your PAN Aadhaar link status by entering your Aadhaar card number and your PAN (Permanent Account Number) card number online. Linking your PAN card with Aadhaar has been made mandatory for certain services, such as filing your income tax returns. As per a recent notification from the government, the last date to link PAN with Aadhaar is 31 March 2023. Earlier, the last date was 31 March 2022. if the application form gets rejected, either on the ground of incorrect or incomplete information. One can re-apply for the PAN card with correct information using the same payment details. - docs.dhboss.com


GET/POST : PAN_Aadhar_Link_Status

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
pan_no String {Enter Value} Yes
uid_no String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
status string success
response.uid_number1 string 123456789000
response.pan_number1 string AAAAA1234A
response.message1 string PAN Card and Aadhar Number Linking Mismatch Because Your PAN Link Another Aadhar Number 10XXXXXXXX90
response.pan_number2 string AAAAA1234A
response.message2 string Aaadhaar Card is already linked to PAN Card.
response.uid_number3 string 123456789000
response.pan_number3 string AAAAA1234A
response.message3 string Your PAN AAAAA1234A is already linked to given Aadhaar 123456789000






Call API URL
https://api.dhboss.com/apicall/pan_link_status/
API Call Request Parameters
pan_no=value&uid_no=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/pan_link_status/',
  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=AAAAA1234A&uid_no=(OPTION)',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
  "code": 200,
  "status": "success",
    "response": {
    "uid_number1": "123456789000",
    "pan_number1": "AAAAA1234A",
    "message1": "PAN Card and Aadhar Number Linking Mismatch Because Your PAN Link Another Aadhar Number 10XXXXXXXX90",
    "pan_number2": "AAAAA1234A",
    "message2": "Aaadhaar Card is already linked to PAN Card.",
    "uid_number3": "123456789000",
    "pan_number3": "AAAAA1234A",
    "message3": "Your PAN AAAAA1234A is already linked to given Aadhaar 123456789000"
  }
}