Integrate our services directly into your application. Use the API Key from your dashboard to authenticate.
Pass your API Key in the header X-Api-Key or as a query parameter api_key.
Retrieve PAN Number using Aadhaar Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-find |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar_number": "123456789012"
}
}
Retrieve PAN Number using Aadhaar via Kycapizone API.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-find2 |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar_number": "123456XXXX12"
}
}
Retrieve PAN Number using Aadhaar via Kycapizone API (New Slot).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-find3 |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar_number": "123456XXXX12"
}
}
Get full details of a PAN card holder.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-details |
| pan_number | string | Yes | Valid 10-character PAN Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"pan_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"full_name": "JOHN DOE",
"category": "Individual"
}
}
Get detailed PAN Prime Plus information via Kycapizone.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-details-prime |
| pan_number | string | Yes | Valid 10-character PAN Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"pan_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"pan_number": "ABCDE1234F",
"name": "JOHN DOE",
"father_name": "FATHER NAME",
"masked_aadhaar": "79XXXXXXXX49",
"dob": "2002-08-12",
"category": "Individual"
}
}
Extract PAN number from GSTIN via Kycapizone.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to gst-to-pan |
| gst_number | string | Yes | Valid 15-character GSTIN |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"gst_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"gstin": "06DHEPS7028N1ZR",
"pan_number": "DHEPS7028N",
"state_code": "06",
"info": "PAN Extracted Successfully"
}
}
Check Pending Challans on Vehicle (Detailed Result).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to challan-check |
| vehicleNumber | string | Yes | Vehicle Number (e.g., DL9CU1543) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"vehicleNumber": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"Status": "Success",
"rcNumber": "MH01CQ9399",
"message": "Challan found",
"challans": [
{
"challan_number": "MH4228234251210100084",
"amount": 2000,
"status": "PENDING"
}
]
}
Verify E-Shram card details.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to eshram |
| uid | string | Yes | 12-digit UAN / E-Shram Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"uid": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Download E-Shram Card by Aadhaar.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to eshram-card |
| uid | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"uid": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"status": "100",
"name": "User Name",
"dob": "01/01/1990",
"pdf": "base64..."
}
}
Find Masked Aadhaar from PAN Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-to-aadhaar-masked |
| pan | string | Yes | Valid 10-digit PAN Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"pan": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan": "ABCDE1234F",
"aadhaar_masked": "XXXXXXXX1234",
"link_status": "linked"
}
}
Search Driving License details.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to dl-search |
| dl_number | string | Yes | Driving License Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"dl_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Vehicle Registration Search
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be rc-search |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Get RC Details via Surepass API.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to rc-response |
| rc_number | string | Yes | Vehicle RC Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"rc_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": { ... }
}
API Service for Aadhaar Send OTP
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be aadhaar-send-otp |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Aadhaar Verify OTP
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be aadhaar-verify-otp |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for DBT Status Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be dbt-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Get Aadhaar holder name and masked mobile from UID.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to aadhaar-uid-name |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"uid": "9507XXXX598",
"aadhaar_number": "9507XXXX598",
"name": "Vipin Kumar Mishra",
"local_name": "ଵୀପିନ କୁମାର ମିଶ୍ରା",
"mobile_masked": "XXXXXX5007"
}
}
Get Ration Card details from Aadhaar Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to aadhaar-to-ration |
| aadhaar | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"message": "Ration Card details found successfully",
"data": {
"ration_card_id": "218041236406",
"card_type": "PHH",
"scheme": "NFSA",
"issue_date": "2020-04-30",
"state": "UTTAR PRADESH",
"district": "BAHRAICH",
"address": "a,Jaitapur,Jaitapur,Bahraich,271902",
"members": [
{
"member_id": "21804123640601",
"member_name": "Fatma",
"gender": "F",
"uid_masked": "XXXX-XXXX-2850",
"relationship": "SELF"
}
]
}
}
API Service for Challan Details
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be challan-details |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for DL PDF Download
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be dl-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for DL PDF Download (Blue)
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be dl-pdf-blue |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Learning License Info
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be learning-license |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Learning License PDF
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be learning-license-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for LMS Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be lms-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for LMS Apply
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be lms-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PUC Apply
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be puc-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for RC by Chassis
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be rc-chassis |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for RC by Mobile
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be rc-mobile |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for RC PDF Download
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be rc-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Fetch DL details and photo/signature from a given HTML page.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to dl-photo-details |
| dl_number | string | Yes | Driving License Number (e.g., MH2120250001353) |
| dob | string | Yes | DOB in DD-MM-YYYY format (e.g., 20-02-1999) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"dl_number": "value",
"dob": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for DBT Aadhaar
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be dbt-aadhaar |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Challan PDF Find
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be challan-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Challan PDF Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be challan-pdf-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN Apply (UTI)
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN Apply (NSDL)
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-nsdl-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN NSDL List
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-nsdl-list |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN to Aadhaar
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-to-aadhaar |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN without Aadhaar
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-without-aadhaar |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN without Aadhaar Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-without-aadhaar-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Ration Card PDF
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be ration-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Ration UID Search
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be ration-uid-search |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Ration Aadhaar PDF
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be ration-aadhaar-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Ration All State
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be ration-all-state |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Aadhaar to Ration PDF
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be aadhar-to-ration-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Voter Details Apply
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-details-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Voter Details Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-details-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Voter Details Search (EPIC)
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-details-search |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Voter Mobile Link
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-mobile-link |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Voter Mobile Link Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-mobile-link-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Farmer Registration
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be farmer-registration |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Mobile SIM Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be mobile-sim |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for LMS Status Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be lms-status-check |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PMKisan Certificate
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pmkisan-certificate |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Mobile Link Verify
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be mobile-link-verify |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for EID Status Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be eid-status-check |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PUC Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be puc-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Certificate Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be certificate-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for System Health Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be system-health |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Check Farmer Status via Agristack (Multi-state).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to farmer-stutes |
| state | string | Yes | State code (e.g., bihar, up, mp) |
| aadhaar | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"state": "value",
"aadhaar": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"status": "APPROVED",
"farmerName": "FARMER NAME"
}
}
Apply for Farmer Registry Mismatch Correction.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to farmer-mismatch |
| aadhar_no | string | Yes | Aadhaar Number |
| name_en | string | Yes | Name (English) |
| name_hi | string | Yes | Name (Hindi) |
| husband_name_en | string | Yes | Husband Name (English) |
| husband_name_hi | string | Yes | Husband Name (Hindi) |
| district | string | Yes | District |
| sub_dist | string | Yes | Sub District |
| village | string | Yes | Village |
| village_code | string | Yes | Village Code |
| gata_no | string | Yes | Gata No |
| khatauni_name_hi | string | Yes | Khatauni Owner Name (Hindi) |
| khatauni_father_name | string | Yes | Khatauni Father Name |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
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 =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhar_no": "value",
"name_en": "value",
"name_hi": "value",
"husband_name_en": "value",
"husband_name_hi": "value",
"district": "value",
"sub_dist": "value",
"village": "value",
"village_code": "value",
"gata_no": "value",
"khatauni_name_hi": "value",
"khatauni_father_name": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"message": "Application Submitted Successfully",
"data": {
"application_id": 123,
"status": "Pending"
}
}
Download Agri Card PDF using Aadhaar Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to agri-card-pdf |
| aadhar | string | Yes | 12-digit Aadhaar Number |
| state | string | No | State code (e.g., up, bihar, mh, ap, tn, gj, rj, mp) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhar": "value",
"state": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"download_url": "https://...",
"file_name": "Agri_Card_123456789012.pdf",
"pdf_base64": "..."
}
Download Farmer Card V2 PDF (Low Cost).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to farmer2 |
| aadhar | string | Yes | 12-digit Aadhaar Number |
| state | string | No | State code (e.g., up, bihar) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhar": "value",
"state": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"download_url": "https://...",
"file_name": "Agri_Card_123456789012.pdf",
"pdf_base64": "..."
}