API Documentation DH-Boss


U. PAN Card Application Status Check Api - DHBOSS API

Our PAN Card Application status verification API allows business correspondents to provide PAN application status verification services to their customers with ease. PAN Card is one of the essential government identity documents given by the Indian Income Tax Department to the individuals especially for the people who pay Income Tax. Getting APIs developed is a very hectic process.uti or utiitsl pan application status api. - docs.dhboss.com


GET/POST : UTI_PAN_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
application_number String {Enter Value} Yes
date_of_birth String {Enter Value} Yes
apikeyfill String {Enter Value} Yes

Output Parameters Detail
Name Type Description
code integer 200
status string success
message string Found Successfully
response.app_no string U - K0099999999
response.app_name string A*** K**** Y****
response.App_type string For Change/Correction in PAN Card details (CSF)
response.status string Application is withheld for processing. marked for objection -
response.panno string ******000M
response.applydate string 19/01/2024
response.objection_reason string Required gazette notification as applicant name change proof






Call API URL
https://api.dhboss.com/apicall/uti_pan_status/
API Call Request Parameters
application_number=value&date_of_birth=value&apikeyfill=value                                                   
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://api.dhboss.com/apicall/uti_pan_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&application_number=Coupon-no&date_of_birth=01-01-1994',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Example Response
{
	"code": 200,
	"status": "success",
	"message": "Found Successfully",
	"response": {
		"app_no": "U - K0099999999",
		"app_name": "A*** K**** Y****",
		"App_type": "For Change/Correction in PAN Card details (CSF)",
		"status": "Application is withheld for processing. marked for objection -",
		"panno": "******000M",
		"applydate": "19/01/2024",
		"objection_reason": "Required gazette notification as applicant name change proof"
	}
}