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 BG (Proxy)

Cost: ₹10.00

Retrieve PAN Number using Aadhaar via BG Provider.

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-bg
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",
    "response_code": 200,
    "data": {
        "pan_number": "ABCDE1234F",
        "aadhaar": "123456789012"
    }
}

Aadhaar Se PAN Find

Cost: ₹10.00

Retrieve PAN Number using Aadhaar via BG Provider.

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
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": true,
    "response_code": 200,
    "aadhaar_number": "123456789012",
    "message": "Aadhaar to PAN find successful.",
    "aadhaar_status": "linked",
    "pan_number": "ABCDE1234F"
}

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

Mobile To UAN Num Instant

Cost: ₹10.00

Find instant UAN details using mobile 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 mobile-to-uan-num-instant
mobile string Yes 10-digit mobile number
environment string No Optional: prod or uat

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", 
    "mobile": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "mobile": "9876540751",
    "message": "Success",
    "data": {
        "mobile": "9876540751",
        "mobile_with_country_code": "919876540751",
        "uan": [
            "1000XXXXXXX"
        ],
        "summary": {
            "matching_uan": "1000XXXXXXX",
            "is_employed": false,
            "uan_count": 1,
            "date_of_exit_marked": true
        },
        "uan_details": {},
        "uan_source": [
            {
                "uan": "1000XXXXXXX",
                "source": "mobile"
            }
        ],
        "name_dob_filtering_score": null
    }
}

PAN To UAN Num Instant

Cost: ₹4.00

Find instant UAN details using PAN number. Balance is deducted on every provider hit (data aaye ya na aaye).

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 pan-to-uan-num-instant
pan string Yes 10-character PAN (e.g. ABCDE1234F)
environment string No Optional: prod (default) or uat

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", 
    "pan": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "pan": "ARSPBXXXXX",
    "message": "Details fetched successfully.",
    "data": {
        "pan": "ARSPBXXXXX",
        "uan": ["101864543982"],
        "matching_uan": "101864543982",
        "name": "NAVIN KUMAR",
        "gender": "MALE",
        "date_of_birth": "1999-08-26",
        "is_employed": true,
        "uan_count": 1,
        "establishment_name": "DHAN HIND UTILITY PRIVATE LIMITED"
    }
}

Passport Details Find

Cost: ₹3.00

Fetch passport application details using file number and DOB. Charged on every provider hit.

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 passport-details-find
file_number string Yes Passport file number / passport number
dob string Yes Date of birth (any common format; API normalizes to DD-MM-YYYY e.g. 15-05-1968)
environment string No Optional: prod or uat

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", 
    "file_number": "value", 
    "dob": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": "success",
    "response_code": 200,
    "balance_deducted": 3,
    "data": {
        "status": true,
        "billable": true,
        "message": "Passport validated successfully.",
        "data": {
            "file_number": "GZ1067990709426",
            "dob": "15/05/1968",
            "passport_number": "AW989081",
            "given_name": "MOHAMMAD IRTAZA",
            "surname": "",
            "application_type": "Normal",
            "application_date": "24/07/2026",
            "date_of_dispatch": "30/07/2026"
        }
    }
}

PAN to Bank Account

Cost: ₹10.00

Find ITR-linked bank details using PAN. Balance is deducted on every provider hit (data aaye ya na aaye).

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 pan-to-bank-account
pan string Yes Valid PAN number (e.g., ABCDE1234F)
environment string No Optional: prod or uat

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", 
    "pan": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "pan": "ABCDE1234F",
    "billable": true,
    "message": "Request processed successfully.",
    "data": {
        "pan": "ABCDE1234F",
        "fullname": "JOHN DOE",
        "bank_count": 1,
        "bank_details": []
    }
}

PAN To Udyam Find

Cost: ₹100.00

Fetch Udyam details using PAN number (deduct only on success).

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 pan-to-udyam-find
pan string Yes Valid PAN number (e.g., ABCDE1234F)
environment string No Optional: prod or uat

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", 
    "pan": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "pan": "ARSPB2XXXX",
    "message": "Details fetched successfully.",
    "data": {
        "pan": "ARSPB2XXXX",
        "enterprise_data": {
            "udyam_reg_no": "UDYAM-MH-16-0041692",
            "major_activity": "TRADING",
            "enterprise_type": "Micro",
            "organization_type": "Proprietary",
            "official_name": "SUNRISE ENTERPRISES"
        },
        "industry": [],
        "branch_address": [],
        "additional_response": []
    }
}

PAN Aadhaar Link Status (Masked PAN)

Cost: ₹0.20

Check Aadhaar already linked against which PAN (masked).

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 pan-aadhar-status
aadhar_no 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 => 'GET',
  CURLOPT_POSTFIELDS =>'{
    "api_key": "YOUR_API_KEY",
    "service": "value", 
    "aadhar_no": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "aadhaar_number": "642572368971",
    "mask_pan": "GOXXXXXX6J",
    "message": "UID no 642572368971 already linked against the PAN [ GOXXXXXX6J ] Kindly apply in pan find",
    "type": "ATP"
}

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

IFSC to Bank Details

Cost: ₹0.50

Fetch bank/branch details using IFSC code.

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 ifsc-to-bank-details
ifsc string Yes Valid IFSC code (e.g., SBIN0041071)

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", 
    "ifsc": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "ifsc": "SBIN0041071",
    "bank": "STATE BANK OF INDIA",
    "branch": "KARWI",
    "address": "ADDRESS...",
    "district": "CHITRAKOOT",
    "state": "UTTAR PRADESH",
    "contact": "",
    "micr": "",
    "branch_code": "",
    "source_url": "https://ifsc.bankifsccode.com/SBIN0041071"
}

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": { ... }
}

RC By Mobile 2

Cost: ₹8.00

Fetch RC to mobile details using vehicle 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 rc-mobile-2
vehicle_num string Yes Vehicle number (e.g., GJ08B1234)
environment string No Optional: prod or uat

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", 
    "vehicle_num": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "vehicle_num": "GJ08B1234",
    "message": "Rc to Mobile Details fetched successfully.",
    "data": {
        "vehicle_num": "GJ08B1234",
        "mobileNo": "98XXXXXX357",
        "mobile_no": "98XXXXXX357",
        "latest_data": {}
    }
}

Engine To RC

Cost: ₹20.00

Fetch RC number using engine 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 engine-to-rc
engineNum string Yes Engine number (e.g., HA10AGJ5E05697)
environment string No Optional: prod or uat

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", 
    "engineNum": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "engineNum": "HA10AGJ5E05697",
    "message": "Engine to RC fetched",
    "data": {
        "engineNum": "HA10AGJ5E05697",
        "engine_num": "HA10AGJ5E05697",
        "vehicle_num": "MH14MX8243"
    }
}

Mobile To RC Number Find

Cost: ₹20.00

Find RC number(s) using mobile 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 mobile-to-rc-number-find
mobile string Yes 10-digit mobile number (e.g., 9999999999)
environment string No Optional: prod or uat

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", 
    "mobile": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "mobile": "9999999999",
    "message": "Mobile to RC fetched",
    "data": {
        "mobile": "9999999999",
        "vehicle_numbers": [
            "UP40AD9574"
        ],
        "vehicle_num": "UP40AD9574",
        "vehicle_no": "UP40AD9574",
        "additional_response": {}
    }
}

Chassis Number To RC Number

Cost: ₹20.00

Fetch RC number and vehicle details using chassis 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 reverse-rc-details
chassis_no string Yes Chassis number (e.g., MBLHAR073J5E03706)
environment string No Optional: prod or uat

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", 
    "chassis_no": "value", 
    "environment": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "chassis_no": "MBLHAR073J5E03706",
    "message": "Reverse RC details fetched successfully.",
    "data": {
        "chassis_no": "MBLHAR073J5E03706",
        "reg_no": "MH14GX6686",
        "result": {
            "reg_no": "MH14GX6686",
            "partial": false,
            "result_source": "chassis_no",
            "auto_corrected_chassis_no": ""
        },
        "rc_details": {
            "reg_no": "MH14GX6686",
            "owner_name": "Sahebrao Baban Yelwande .",
            "model": "Splendor +I3S Self Drum Cast",
            "mobile_number": ""
        },
        "additional_response": {
            "http_response_code": 200,
            "result_code": 101
        }
    }
}

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: ₹4.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

Download Driving License PDF using DL number and DOB.

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-pdf
dl_number string Yes Driving License Number (e.g., MH2120250001353)
dob string Yes DOB in DD-MM-YYYY format (e.g., 02-02-2002)

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

{
    "status": true,
    "message": "DL PDF generated successfully",
    "data": {
        "dl_number": "MH2120250001353",
        "dob": "02-02-2002",
        "pdf_url": "https://run.rtyu.tech/uploads/dl_pdf/DL_1750000000_1234.pdf",
        "pdf": "data:application/pdf;base64,JVBERi0xLjcK...",
        "front_image_url": "https://idmaker.mfcdn.in/front.jpg",
        "back_image_url": "https://idmaker.mfcdn.in/back.jpg",
        "order_id": "DLPDF1750000000123"
    }
}

DL PDF Download (Blue)

Cost: ₹5.00

Download blue Driving License PDF using DL number and DOB.

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-pdf-blue
dl_number string Yes Driving License Number (e.g., MH2120250001353)
dob string Yes DOB in DD-MM-YYYY format (e.g., 02-02-2002)

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

{}

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

Download Learning License PDF using application/id 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 learning-license-pdf
id_number string Yes Learning License application number (e.g., 4655917725)

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", 
    "id_number": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "message": "PDF fetched successfully",
    "data": {
        "id_number": "4655917725",
        "pdf": "base64..."
    }
}

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

Search mobile number by RC 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 rc-mobile
rc_number string Yes Vehicle RC number (e.g., UP32AB1234)

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", 
    "rc_number": "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

Download RC PDF using vehicle RC 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 rc-pdf
rc_number string Yes Vehicle RC number (e.g., UP32AB1234)

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", 
    "rc_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,
    "balance_deducted": 15,
    "remaining_balance": 100.00,
    "data": {
        "status": true,
        "message": "RC PDF generated successfully",
        "data": {
            "rc_number": "UP32AB1234",
            "pdf_url": "https://run.rtyu.tech/uploads/rc_pdf/RC_PDF_UP32AB1234_1234567890_1234.pdf",
            "filename": "RC_PDF_UP32AB1234_1234567890_1234.pdf"
        }
    }
}

Blue RC PDF

Cost: ₹7.00

Download Blue RC Smart Card PDF using vehicle RC 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 blue-rc-pdf
rc_number string Yes Vehicle RC number (e.g., BR29AU9806)

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", 
    "rc_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,
    "balance_deducted": 7,
    "remaining_balance": 100.00,
    "data": {
        "status": true,
        "message": "Blue RC PDF generated successfully",
        "data": {
            "rc_number": "BR29AU9806",
            "owner_name": "Navin Kumar",
            "pdf_base64": "JVBERi0xLjQK...",
            "base64": "JVBERi0xLjQK...",
            "pdf_url": "https://run.rtyu.tech/uploads/rc_pdf/BLUE_RC_BR29AU9806_1234567890_1234.pdf",
            "download_url": "https://run.rtyu.tech/uploads/rc_pdf/BLUE_RC_BR29AU9806_1234567890_1234.pdf",
            "file_name": "BLUE_RC_BR29AU9806_1234567890_1234.pdf",
            "filename": "BLUE_RC_BR29AU9806_1234567890_1234.pdf"
        }
    }
}

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

{}

Sambal Card

Cost: ₹2.20

Generate Sambal card front/back images and A4 PDF (IDCard Store).

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 sambal-card
input string Yes Primary input (e.g., 123265093)

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", 
    "input": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "message": "Sambal card generated successfully",
    "data": {
        "input": "123265093",
        "scale": 1,
        "cards": [
            {
                "front": "uploads/sambal_card/SAMBAL_123265093_1750000000_1234_FRONT.png",
                "back": "uploads/sambal_card/SAMBAL_123265093_1750000000_1234_BACK.png",
                "a4": "uploads/sambal_card/SAMBAL_123265093_1750000000_1234.pdf"
            }
        ],
        "front_path": "uploads/sambal_card/SAMBAL_123265093_1750000000_1234_FRONT.png",
        "back_path": "uploads/sambal_card/SAMBAL_123265093_1750000000_1234_BACK.png",
        "a4_path": "uploads/sambal_card/SAMBAL_123265093_1750000000_1234.pdf",
        "front_url": "https://run.rtyu.tech/uploads/sambal_card/SAMBAL_123265093_1750000000_1234_FRONT.png",
        "back_url": "https://run.rtyu.tech/uploads/sambal_card/SAMBAL_123265093_1750000000_1234_BACK.png",
        "a4_url": "https://run.rtyu.tech/uploads/sambal_card/SAMBAL_123265093_1750000000_1234.pdf",
        "download_url": "https://run.rtyu.tech/uploads/sambal_card/SAMBAL_123265093_1750000000_1234.pdf",
        "file_name": "SAMBAL_123265093_1750000000_1234.pdf",
        "provider_http_code": 200
    }
}

New Format PDF (Aadhaar)

Cost: ₹3.00

Generate a new-design Aadhaar card (front/back images + A4 PDF) from an uploaded Aadhaar PDF via IDCard Store. Send as multipart/form-data.

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 new-format-pdf
password string Yes Password to unlock the Aadhaar PDF
file file Yes Original Aadhaar PDF file (multipart upload). Base64 field file_base64 also accepted.
phone select No Include phone number (default No)
new_design select No Use new design layout (default Yes)
scale select No Render quality (default High)

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", 
    "password": "value", 
    "file": "value", 
    "phone": "value", 
    "new_design": "value", 
    "scale": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "message": "Aadhaar PDF generated successfully",
    "data": {
        "scale": "3",
        "new_design": true,
        "phone": false,
        "cards": [
            {
                "front": "uploads/new_format_pdf/AADHAAR_1750000000_1234_FRONT.png",
                "back": "uploads/new_format_pdf/AADHAAR_1750000000_1234_BACK.png",
                "a4": "uploads/new_format_pdf/AADHAAR_1750000000_1234.pdf"
            }
        ],
        "front_url": "https://run.rtyu.tech/uploads/new_format_pdf/AADHAAR_1750000000_1234_FRONT.png",
        "back_url": "https://run.rtyu.tech/uploads/new_format_pdf/AADHAAR_1750000000_1234_BACK.png",
        "a4_url": "https://run.rtyu.tech/uploads/new_format_pdf/AADHAAR_1750000000_1234.pdf",
        "download_url": "https://run.rtyu.tech/uploads/new_format_pdf/AADHAAR_1750000000_1234.pdf",
        "file_name": "AADHAAR_1750000000_1234.pdf",
        "provider_http_code": 200
    }
}

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

{}

DBT Aadhaar (NPCI UID Seeding)

Cost: ₹12.00

NPCI UID seeding status (Apinexus).

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 dbt-aadhaar2
uid string Yes 12-digit Aadhaar/UID 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 => 'GET',
  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

{}

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

Fetch Aadhaar details from PAN using Services4Public provider.

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 pan-to-aadhaar
pan string Yes PAN number (e.g., CJQPN0528K)

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", 
    "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,
    "message": "PAN to Aadhaar verification successfully",
    "data": {
        "Status": "Success",
        "StatusCode": 100,
        "panNumber": "CJQPN0528K",
        "pan_no": "CJQPN0528K",
        "aadhaarNo": "919127440219",
        "aadhaar_number": "919127440219",
        "name": "UTTAM SINGH NETAM",
        "gender": "MALE",
        "dob": "26/07/1996",
        "message": "PAN to Aadhaar verification successfully"
    }
}

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

Download ration card PDF using ration 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 ration-pdf
ration_no string Yes Ration card number (e.g., 1965245748)

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", 
    "ration_no": "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

Download ration 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 ration-aadhaar-pdf
aadhaar_no 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 => 'GET',
  CURLOPT_POSTFIELDS =>'{
    "api_key": "YOUR_API_KEY",
    "service": "value", 
    "aadhaar_no": "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

Fetch ration PDF/details using Aadhaar UID.

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 aadhar-to-ration-pdf
uid string Yes Valid 12-digit Aadhaar UID

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", 
    "uid": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": "success",
    "message": "Success",
    "data": {
        "status": "100"
    }
}

Ration To Aadhaar (All State)

Cost: ₹120.00

Fetch ration card members instantly using ration 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 ration-to-aadhaar-all-state
ration_no string Yes Ration card number (e.g., 1965245748)

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", 
    "ration_no": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "message": "Ration to Aadhaar data fetched successfully",
    "data": {
        "ration_no": "3401003XXXXX",
        "members": [
            {
                "name": "GULNAZ",
                "aadhaar": "4534548XXXXX"
            },
            {
                "name": "SABANA",
                "aadhaar": "2887234XXXXX"
            },
            {
                "name": "TABU",
                "aadhaar": "2165061XXXXX"
            }
        ],
        "total_members": 3,
        "provider_http_code": 200
    }
}

Ration To Aadhaar Status

Cost: ₹0.00

Check application status/list. Admin can view all or filter by username.

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 ration-to-aadhaar-all-state-status
application_id string Yes Application number (random id)
status string No Optional: pending, completed, rejected
all string No Admin only: set 1 to fetch all users data
username string No Admin only: filter by username/mobile/email

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", 
    "application_id": "value", 
    "status": "value", 
    "all": "value", 
    "username": "value" 
}',
  CURLOPT_HTTPHEADER => array(
    'Content-Type: application/json'
  ),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>

Sample Response

{
    "status": true,
    "response_code": 200,
    "message": "Data fetched successfully",
    "data": [],
    "statistics": {
        "total": 0,
        "pending": 0,
        "completed": 0,
        "rejected": 0
    },
    "count": 0
}

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

Get SIM/operator details using mobile 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 mobile-sim
mobile string Yes 10-digit mobile 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 => 'GET',
  CURLOPT_POSTFIELDS =>'{
    "api_key": "YOUR_API_KEY",
    "service": "value", 
    "mobile": "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

{
    "status": "success",
    "response_code": 200,
    "balance_deducted": 15,
    "remaining_balance": 100.00,
    "data": {
        "status": true,
        "message": "Agri Card PDF generated successfully",
        "data": {
            "uid": "819145109390",
            "state": "up",
            "file_name": "AGRI_CARD_UP_9390_1750000000_1234.pdf",
            "pdf_url": "https://run.rtyu.tech/uploads/agri_card_pdf/AGRI_CARD_UP_9390_1750000000_1234.pdf",
            "download_url": "https://run.rtyu.tech/uploads/agri_card_pdf/AGRI_CARD_UP_9390_1750000000_1234.pdf",
            "pdf_base64": "JVBERi0xLjcK...",
            "pdf_size": 84562,
            "stored_at": "2026-06-21 10:30:00",
            "auto_delete_after": "2026-06-22 10:30:00",
            "remote_http_code": 200
        }
    }
}

New Farmer PDF (New)

Cost: ₹6.00

Generate New Farmer PDF using Aadhaar Number and state (new version).

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 new-farmer-pdf
aadhar string Yes 12-digit Aadhaar Number
state string No State code (e.g., up, cg, gj, rj, mp, mh)

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

{
    "status": "success",
    "response_code": 200,
    "balance_deducted": 6,
    "remaining_balance": 100.00,
    "data": {
        "status": true,
        "message": "New Farmer PDF generated successfully",
        "data": {
            "uid": "819145109390",
            "state": "up",
            "file_name": "NEW_FARMER_UP_9390_1750000000_1234.pdf",
            "pdf_url": "https://run.rtyu.tech/uploads/new_farmer_pdf/NEW_FARMER_UP_9390_1750000000_1234.pdf",
            "download_url": "https://run.rtyu.tech/uploads/new_farmer_pdf/NEW_FARMER_UP_9390_1750000000_1234.pdf",
            "pdf_base64": "JVBERi0xLjcK...",
            "pdf_size": 84562,
            "stored_at": "2026-06-21 10:30:00",
            "auto_delete_after": "2026-06-22 10:30:00"
        }
    }
}

Old Farmer PDF

Cost: ₹2.00

Download Old Farmer PDF (old version, 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": "..."
}