PAN Card Application Status Check Api - NSDL stands for National Securities Depository Limited is one of the largest depositories in the world. NSDL PAN Cards are highly used for the identity verification of the person or an organization by the various government and private sectors including banks. The PAN Card (NSDL) API allows an agent or business correspondent to offer a wide range of PAN Card related services like enrollment, verification, checking status, or updating. Our PAN Card API is quite economical offering attractive commissions. This API allows the user to offer online PAN Card services to their customers. All the data provided or entered in this API is managed by the NSDL database which ensures complete safety and authorized information. - 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 |
---|---|---|---|
application_number | String | {Enter Value} | Yes |
apikeyfill | String | {Enter Value} | Yes |
Name | Type | Description |
---|---|---|
Invalid JSON data |
https://api.dhboss.com/apicall/nsdl_application_status/
application_number=value&apikeyfill=value
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.dhboss.com/apicall/nsdl_application_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=acknp', )); $response = curl_exec($curl); curl_close($curl); echo $response; ?>
{ "code": 200, "message": "Status Check Successfully", "status": "success", "response": { "ack_no": "123456789012345", "app_name": " Dummy Name", "cat_name": "Individual", "status": " Your PAN card has been dispatched on dummy date by Registered/Speed Post** vide airway bill no. "Dummy Track Number", at the address for communication* indicated by you in the application. The PAN card will be delivered in due time. ** EMXXXXXXXXX represents Airway Bill Number for Speed Post & RMXXXXXXXXX represents Airway Bill Number for Registered Post. ", "panno": "Dummy PAN Number" } }