Devil API

EID STATUS CHEK

Base Endpoint URL

https://api.devilapi.online/service_api/v1/adhar/eid_status_chek.php

Parameters Payload

Parameter Type Required Description
api_key string REQUIRED enter_key
captchaValue string REQUIRED enter_captchaValue
captchaTxnId string REQUIRED enter_captchaTxnId
eid string REQUIRED enter_eid

PHP Integration Code

curl_request.php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
   CURLOPT_URL => 'https://api.devilapi.online/service_api/v1/adhar/eid_status_chek.php?api_key=&captchaValue=&captchaTxnId=&eid=',
   CURLOPT_RETURNTRANSFER => true,
   CURLOPT_ENCODING => '',
   CURLOPT_MAXREDIRS => 10,
   CURLOPT_TIMEOUT => 30,
   CURLOPT_FOLLOWLOCATION => true,
   CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
   CURLOPT_CUSTOMREQUEST => 'GET',
   CURLOPT_POSTFIELDS => {
    "api_key": "",
    "captchaValue": "",
    "captchaTxnId": "",
    "eid": ""
}
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;
Example Response Payload
200 OK
{
    "status": "success",
    "message": "Status Retrieved Successfully",
    "Response": "Your Aadhaar has been generated. While your Aadhaar is being printed and posted to you, please download eAadhaar from the official UIDAI website.",
    "Fee": 0,
    "old_balance": 1042,
    "new_balance": 1042,
    "eid": "2728************04113733"
}
Bearer Token Authentication All API requests require active authentication tokens sent inside HTTP Bearer headers.