API Documentation Hidden API


UP Edistrict Application no to Aadhar (Application Slip) - (Income, Caste & Domicle) API - Hidden API


GET/POST : edistrict/app_to_uid

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
apikeystringEnter Your API KeyYes
application_nonumberEnter Applicatio NumberYes







Success Output Parameters Detail
Name Type Description
statusstringsuccess
messagestringAadhar (Application Slip) Fetched SUccessfully
codestringbase64 encoded html code
application_nostring24135001004XXXX







Failed Output Parameters Detail
Name Type Description
statusstringfailed
messagestringInvalid Application Number






Call API URL
https://hiddenapi.in/serviceapi/edistrict/app_to_uid
API Call Request Parameters
apikey=value&application_no=value
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://hiddenapi.in/serviceapi/edistrict/app_to_uid?apikey=value&application_no=value',
  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',
 
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
?>
API Hit Success Example Response
{
    "status": "success",
    "message": "Aadhar (Application Slip) Fetched SUccessfully",
    "code": "base64 encoded html code",
    "application_no": "24135001004XXXX"
}
API Hit Failure Example Response
{
    "status": "failed",
    "message": "Invalid Application Number"
}