API Documentation

Integrate our services directly into your application. Use the API Key from your dashboard to authenticate.

Authentication

Pass your API Key in the header X-Api-Key or as a query parameter api_key.

PAN Find (Search by Aadhaar)

Cost: ₹8.00

Retrieve PAN Number using Aadhaar Number.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "data": {
        "pan_number": "ABCDE1234F",
        "aadhaar_number": "123456789012"
    }
}

PAN Find 2 (Kycapizone Aadhaar to PAN)

Cost: ₹2.00

Retrieve PAN Number using Aadhaar via Kycapizone API.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "data": {
        "pan_number": "ABCDE1234F",
        "aadhaar_number": "123456XXXX12"
    }
}

PAN Find 3 (Kycapizone Aadhaar to PAN - New)

Cost: ₹2.00

Retrieve PAN Number using Aadhaar via Kycapizone API (New Slot).

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "data": {
        "pan_number": "ABCDE1234F",
        "aadhaar_number": "123456XXXX12"
    }
}

PAN Details Search

Cost: ₹3.00

Get full details of a PAN card holder.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "data": {
        "full_name": "JOHN DOE",
        "category": "Individual"
    }
}

PAN Details Prime Plus (Kycapizone)

Cost: ₹5.00

Get detailed PAN Prime Plus information via Kycapizone.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "data": {
        "pan_number": "ABCDE1234F",
        "name": "JOHN DOE",
        "father_name": "FATHER NAME",
        "masked_aadhaar": "79XXXXXXXX49",
        "dob": "2002-08-12",
        "category": "Individual"
    }
}

GST to PAN Number

Cost: ₹3.00

Extract PAN number from GSTIN via Kycapizone.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "data": {
        "gstin": "06DHEPS7028N1ZR",
        "pan_number": "DHEPS7028N",
        "state_code": "06",
        "info": "PAN Extracted Successfully"
    }
}

Challan Check V2

Cost: ₹3.00

Check Pending Challans on Vehicle (Detailed Result).

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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)

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "Status": "Success",
    "rcNumber": "MH01CQ9399",
    "message": "Challan found",
    "challans": [
        {
            "challan_number": "MH4228234251210100084",
            "amount": 2000,
            "status": "PENDING"
        }
    ]
}

E-Shram Verification

Cost: ₹5.00

Verify E-Shram card details.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

E-Shram Card Download

Cost: ₹5.00

Download E-Shram Card by Aadhaar.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "data": {
        "status": "100",
        "name": "User Name",
        "dob": "01/01/1990",
        "pdf": "base64..."
    }
}

PAN to Aadhaar Masked Search

Cost: ₹1.00

Find Masked Aadhaar from PAN Number.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "data": {
        "pan": "ABCDE1234F",
        "aadhaar_masked": "XXXXXXXX1234",
        "link_status": "linked"
    }
}

RC Response (Surepass)

Cost: ₹4.00

Get RC Details via Surepass API.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "data": { ... }
}

Aadhaar Send OTP

Cost: ₹5.00

API Service for Aadhaar Send OTP

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be aadhaar-send-otp

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Aadhaar Verify OTP

Cost: ₹5.00

API Service for Aadhaar Verify OTP

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be aadhaar-verify-otp

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

DBT Status Check

Cost: ₹2.00

API Service for DBT Status Check

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be dbt-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Aadhaar UID to Name

Cost: ₹10.00

Get Aadhaar holder name and masked mobile from UID.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "data": {
        "uid": "9507XXXX598",
        "aadhaar_number": "9507XXXX598",
        "name": "Vipin Kumar Mishra",
        "local_name": "ଵୀପିନ କୁମାର ମିଶ୍ରା",
        "mobile_masked": "XXXXXX5007"
    }
}

Aadhaar to Ration Details

Cost: ₹3.00

Get Ration Card details from Aadhaar Number.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample 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"
            }
        ]
    }
}

Challan Details

Cost: ₹5.00

API Service for Challan Details

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be challan-details

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

DL PDF Download

Cost: ₹5.00

API Service for DL PDF Download

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be dl-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

DL PDF Download (Blue)

Cost: ₹5.00

API Service for DL PDF Download (Blue)

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be dl-pdf-blue

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Learning License Info

Cost: ₹10.00

API Service for Learning License Info

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be learning-license

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Learning License PDF

Cost: ₹25.00

API Service for Learning License PDF

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be learning-license-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

LMS Status

Cost: ₹0.00

API Service for LMS Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be lms-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

LMS Apply

Cost: ₹0.00

API Service for LMS Apply

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be lms-apply

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PUC Apply

Cost: ₹0.00

API Service for PUC Apply

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be puc-apply

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

RC by Chassis

Cost: ₹5.00

API Service for RC by Chassis

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be rc-chassis

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

RC by Mobile

Cost: ₹5.00

API Service for RC by Mobile

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be rc-mobile

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

RC PDF Download

Cost: ₹15.00

API Service for RC PDF Download

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be rc-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

DL Photo Details

Cost: ₹2.00

Fetch DL details and photo/signature from a given HTML page.

GET https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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)

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

DBT Aadhaar

Cost: ₹12.00

API Service for DBT Aadhaar

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be dbt-aadhaar

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Challan PDF Find

Cost: ₹20.00

API Service for Challan PDF Find

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be challan-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Challan PDF Status

Cost: ₹0.00

API Service for Challan PDF Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be challan-pdf-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN Apply (UTI)

Cost: ₹0.00

API Service for PAN Apply (UTI)

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-apply

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN Apply (NSDL)

Cost: ₹107.00

API Service for PAN Apply (NSDL)

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-nsdl-apply

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN NSDL List

Cost: ₹0.00

API Service for PAN NSDL List

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-nsdl-list

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN Status

Cost: ₹0.00

API Service for PAN Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN to Aadhaar

Cost: ₹60.00

API Service for PAN to Aadhaar

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-to-aadhaar

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN without Aadhaar

Cost: ₹10.00

API Service for PAN without Aadhaar

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-without-aadhaar

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PAN without Aadhaar Status

Cost: ₹0.00

API Service for PAN without Aadhaar Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pan-without-aadhaar-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Ration Card PDF

Cost: ₹10.00

API Service for Ration Card PDF

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be ration-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Ration Aadhaar PDF

Cost: ₹10.00

API Service for Ration Aadhaar PDF

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be ration-aadhaar-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Ration All State

Cost: ₹10.00

API Service for Ration All State

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be ration-all-state

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Aadhaar to Ration PDF

Cost: ₹10.00

API Service for Aadhaar to Ration PDF

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be aadhar-to-ration-pdf

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Voter Details Apply

Cost: ₹45.00

API Service for Voter Details Apply

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be voter-details-apply

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Voter Details Status

Cost: ₹0.00

API Service for Voter Details Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be voter-details-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Farmer Registration

Cost: ₹10.00

API Service for Farmer Registration

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be farmer-registration

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Mobile SIM Check

Cost: ₹10.00

API Service for Mobile SIM Check

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be mobile-sim

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

LMS Status Check

Cost: ₹0.00

API Service for LMS Status Check

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be lms-status-check

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PMKisan Certificate

Cost: ₹0.00

API Service for PMKisan Certificate

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be pmkisan-certificate

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

EID Status Check

Cost: ₹5.00

API Service for EID Status Check

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be eid-status-check

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

PUC Status

Cost: ₹0.00

API Service for PUC Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be puc-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Certificate Status

Cost: ₹0.00

API Service for Certificate Status

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be certificate-status

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

System Health Check

Cost: ₹0.00

API Service for System Health Check

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

Name Type Required Description
api_key string Yes Your secure API Key.
service string Yes Value must be system-health

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{}

Farmer Status Check

Cost: ₹0.00

Check Farmer Status via Agristack (Multi-state).

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "data": {
        "status": "APPROVED",
        "farmerName": "FARMER NAME"
    }
}

Farmer Registry Mismatch Correction

Cost: ₹50.00

Apply for Farmer Registry Mismatch Correction.

POST https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "message": "Application Submitted Successfully",
    "data": {
        "application_id": 123,
        "status": "Pending"
    }
}

Agri Card PDF

Cost: ₹5.00

Download Agri Card PDF using Aadhaar Number.

GET https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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)

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "download_url": "https://...",
    "file_name": "Agri_Card_123456789012.pdf",
    "pdf_base64": "..."
}

Farmer Card V2

Cost: ₹2.00

Download Farmer Card V2 PDF (Low Cost).

GET https://run.rtyu.tech/api/v1/index.php

Request Headers & Parameters

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)

Sample Request (PHP cURL)

<?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;
?>

Sample Response

{
    "download_url": "https://...",
    "file_name": "Agri_Card_123456789012.pdf",
    "pdf_base64": "..."
}