API Documentation Hidden API


Aadhar Verification by Finger API - Hidden API


GET/POST : aadhar/ekyc_all

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
aadharnumberEnter Your Aadhaar NOYes
bioencstringEnter Biometric DataYes







Success Output Parameters Detail
Name Type Description
statusMessagestringSuccess
statusstringsuccess
vehiclestringArray
challansstringArray







Failed Output Parameters Detail
Name Type Description
statusstringfailed
messagestringFinger not matched






Call API URL
https://hiddenapi.in/serviceapi/aadhar/ekyc_all
API Call Request Parameters
apikey=value&aadhar=value&bioenc=value
API Call Example Request
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://hiddenapi.in/serviceapi/aadhar/ekyc_all?apikey=value&aadhar=value&bioenc=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
{
    "statusMessage": "Success",
    "status": "success",
    "vehicle": {
        "registration_number": "UP21BN4124",
        "model_name": "KINETIC SAFAR",
        "vehicle_type_v2": "MISC",
        "vehicle_name": null,
        "vehicle_model": null,
        "fuel_type": "ELECTRIC(BOV)",
        "name": "Z*S*A* *L*"
    },
    "challans": [
        {
            "owner_name": "ZISHAN ALI",
            "location": "UP",
            "challan_search_source": "PARIVAHAN",
            "date": "2023-12-26",
            "penalty": "violation of parking rules. ( MV act 1988 S 122,126 R/W 177 ) ",
            "challan_number": "UP89554231226185358",
            "amount": "500.0",
            "challan_status": "UNPAID"
        },
        {
            "owner_name": "ZISHAN ALI",
            "location": "UP",
            "challan_search_source": "PARIVAHAN",
            "date": "2021-01-18",
            "penalty": "Violation of traffic rules by the driver except the offences mentioned in Section in 184 a, b, d, e, f and without any indication changing the alignment ( MV act 1988  S 119 R/W S 177 mentioned in section 184 a,b,d,e,f ) ",
            "challan_number": "UP50491210118162025",
            "amount": "500.0",
            "challan_status": "UNPAID"
        },
        {
            "owner_name": "ZESHAN ALI",
            "location": "UP",
            "challan_search_source": "PARIVAHAN",
            "date": "2023-06-28",
            "penalty": "violation of parking rules. ( MV act 1988 S 122,126 R/W 177 ) ",
            "challan_number": "UP75156230628122357",
            "amount": "1500.0",
            "challan_status": "UNPAID"
        },
        {
            "owner_name": "ZISHAN ALI",
            "location": "UP",
            "challan_search_source": "PARIVAHAN",
            "date": "2024-10-09",
            "penalty": "violation of parking rules. ( MV act 1988 S 122,126 R/W 177 ) ",
            "challan_number": "UP75107241009134138",
            "amount": "500.0",
            "challan_status": "UNPAID"
        },
        {
            "owner_name": "ZISHAN ALI",
            "location": "UP",
            "challan_search_source": "PARIVAHAN",
            "date": "2021-04-23",
            "penalty": "violation of parking rules. ( MV act 1988 S 122,126 R/W 177 ) ",
            "challan_number": "UP89355210423125613",
            "amount": "0.0",
            "challan_status": "PAID"
        }
    ]
}
API Hit Failure Example Response
{
    "status": "failed",
    "message": "Finger not matched"
}