Integrate our services directly into your application. Use the API Key from your dashboard to authenticate.
Pass your API Key in the header X-Api-Key or as a query parameter api_key.
Retrieve PAN Number using Aadhaar Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-find |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar_number": "123456789012"
}
}
Retrieve PAN Number using Aadhaar via BG Provider.
| 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 |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar": "123456789012"
}
}
Retrieve PAN Number using Aadhaar via BG Provider.
| 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 |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": true,
"response_code": 200,
"aadhaar_number": "123456789012",
"message": "Aadhaar to PAN find successful.",
"aadhaar_status": "linked",
"pan_number": "ABCDE1234F"
}
Retrieve PAN Number using Aadhaar via Kycapizone API.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-find2 |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar_number": "123456XXXX12"
}
}
Retrieve PAN Number using Aadhaar via Kycapizone API (New Slot).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-find3 |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan_number": "ABCDE1234F",
"aadhaar_number": "123456XXXX12"
}
}
Find instant UAN details using mobile number.
| 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 |
<?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;
?>
{
"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
}
}
Find instant UAN details using PAN number. Balance is deducted on every provider hit (data aaye ya na aaye).
| 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 |
<?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;
?>
{
"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"
}
}
Fetch passport application details using file number and DOB. Charged on every provider hit.
| 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 |
<?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;
?>
{
"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"
}
}
}
Find ITR-linked bank details using PAN. Balance is deducted on every provider hit (data aaye ya na aaye).
| 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 |
<?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;
?>
{
"status": true,
"response_code": 200,
"pan": "ABCDE1234F",
"billable": true,
"message": "Request processed successfully.",
"data": {
"pan": "ABCDE1234F",
"fullname": "JOHN DOE",
"bank_count": 1,
"bank_details": []
}
}
Fetch Udyam details using PAN number (deduct only on success).
| 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 |
<?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;
?>
{
"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": []
}
}
Check Aadhaar already linked against which PAN (masked).
| 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 |
<?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;
?>
{
"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"
}
Get full details of a PAN card holder.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-details |
| pan_number | string | Yes | Valid 10-character PAN Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"pan_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"full_name": "JOHN DOE",
"category": "Individual"
}
}
Search PAN details using Aadhaar number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-search |
| aadhaar_no | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => '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;
?>
{}
Get detailed PAN Prime Plus information via Kycapizone.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-details-prime |
| pan_number | string | Yes | Valid 10-character PAN Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"pan_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"pan_number": "ABCDE1234F",
"name": "JOHN DOE",
"father_name": "FATHER NAME",
"masked_aadhaar": "79XXXXXXXX49",
"dob": "2002-08-12",
"category": "Individual"
}
}
Extract PAN number from GSTIN via Kycapizone.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to gst-to-pan |
| gst_number | string | Yes | Valid 15-character GSTIN |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"gst_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"gstin": "06DHEPS7028N1ZR",
"pan_number": "DHEPS7028N",
"state_code": "06",
"info": "PAN Extracted Successfully"
}
}
Check Pending Challans on Vehicle (Detailed Result).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to challan-check |
| vehicleNumber | string | Yes | Vehicle Number (e.g., DL9CU1543) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"vehicleNumber": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"Status": "Success",
"rcNumber": "MH01CQ9399",
"message": "Challan found",
"challans": [
{
"challan_number": "MH4228234251210100084",
"amount": 2000,
"status": "PENDING"
}
]
}
Verify E-Shram card details.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to eshram |
| uid | string | Yes | 12-digit UAN / E-Shram Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"uid": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Download E-Shram Card by Aadhaar.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to eshram-card |
| uid | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"uid": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"status": "100",
"name": "User Name",
"dob": "01/01/1990",
"pdf": "base64..."
}
}
Find Masked Aadhaar from PAN Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to pan-to-aadhaar-masked |
| pan | string | Yes | Valid 10-digit PAN Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"pan": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"data": {
"pan": "ABCDE1234F",
"aadhaar_masked": "XXXXXXXX1234",
"link_status": "linked"
}
}
Fetch bank/branch details using IFSC code.
| 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) |
<?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;
?>
{
"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"
}
Search Driving License details.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to dl-search |
| dl_number | string | Yes | Driving License Number |
| dob | string | Yes | DOB in DD-MM-YYYY format (e.g., 20-02-1999) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"dl_number": "value",
"dob": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
RC verified — base64 PDF returned (supports chip/non-chip and old/new background).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to rc-search |
| rcno | string | Yes | Vehicle registration number (e.g., BR03L8594) |
| cardtype | string | No | 1 = Old Background | 2 = New Background |
| chiptype | string | No | 1 = Chip | 2 = Non-Chip |
<?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",
"rcno": "value",
"cardtype": "value",
"chiptype": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": true,
"message": "RC verification successful",
"data": {
"status": "200",
"rcno": "BR03L8594",
"name": "VINAY KUMAR SINGH",
"application_no": "RCPRINT_4601717997098",
"message": "RC verification successful",
"pdf": "data:application/pdf;base64,JVBERi0xLjQKJb662+=",
"cardtype": 1,
"chiptype": 1
}
}
Get RC Details via Surepass API.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to rc-response |
| rc_number | string | Yes | Vehicle RC Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"rc_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": { ... }
}
Fetch RC to mobile details using vehicle number.
| 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 |
<?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;
?>
{
"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": {}
}
}
Fetch RC number using engine number.
| 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 |
<?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;
?>
{
"status": true,
"response_code": 200,
"engineNum": "HA10AGJ5E05697",
"message": "Engine to RC fetched",
"data": {
"engineNum": "HA10AGJ5E05697",
"engine_num": "HA10AGJ5E05697",
"vehicle_num": "MH14MX8243"
}
}
Find RC number(s) using mobile number.
| 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 |
<?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;
?>
{
"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": {}
}
}
Fetch RC number and vehicle details using chassis number.
| 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 |
<?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;
?>
{
"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
}
}
}
API Service for Aadhaar Send OTP
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be aadhaar-send-otp |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Aadhaar Verify OTP
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be aadhaar-verify-otp |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for DBT Status Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be dbt-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Get Aadhaar holder name and masked mobile from UID.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to aadhaar-uid-name |
| aadhaar_number | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"uid": "9507XXXX598",
"aadhaar_number": "9507XXXX598",
"name": "Vipin Kumar Mishra",
"local_name": "ଵୀପିନ କୁମାର ମିଶ୍ରା",
"mobile_masked": "XXXXXX5007"
}
}
Get Ration Card details from Aadhaar Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to aadhaar-to-ration |
| aadhaar | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhaar": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"message": "Ration Card details found successfully",
"data": {
"ration_card_id": "218041236406",
"card_type": "PHH",
"scheme": "NFSA",
"issue_date": "2020-04-30",
"state": "UTTAR PRADESH",
"district": "BAHRAICH",
"address": "a,Jaitapur,Jaitapur,Bahraich,271902",
"members": [
{
"member_id": "21804123640601",
"member_name": "Fatma",
"gender": "F",
"uid_masked": "XXXX-XXXX-2850",
"relationship": "SELF"
}
]
}
}
API Service for Challan Details
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be challan-details |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Download Driving License PDF using DL number and DOB.
| 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) |
<?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;
?>
{
"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"
}
}
Download blue Driving License PDF using DL number and DOB.
| 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) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"dl_number": "value",
"dob": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Learning License Info
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be learning-license |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Download Learning License PDF using application/id number.
| 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) |
<?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;
?>
{
"status": true,
"message": "PDF fetched successfully",
"data": {
"id_number": "4655917725",
"pdf": "base64..."
}
}
API Service for LMS Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be lms-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for LMS Apply
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be lms-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PUC Apply
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be puc-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for RC by Chassis
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be rc-chassis |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Search mobile number by RC number.
| 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) |
<?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;
?>
{}
Download RC PDF using vehicle RC number.
| 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) |
<?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;
?>
{
"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"
}
}
}
Download Blue RC Smart Card PDF using vehicle RC number.
| 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) |
<?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;
?>
{
"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"
}
}
}
Fetch DL details and photo/signature from a given HTML page.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to dl-photo-details |
| dl_number | string | Yes | Driving License Number (e.g., MH2120250001353) |
| dob | string | Yes | DOB in DD-MM-YYYY format (e.g., 20-02-1999) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"dl_number": "value",
"dob": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Generate Sambal card front/back images and A4 PDF (IDCard Store).
| 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) |
<?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;
?>
{
"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
}
}
Generate a new-design Aadhaar card (front/back images + A4 PDF) from an uploaded Aadhaar PDF via IDCard Store. Send as multipart/form-data.
| 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) |
<?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;
?>
{
"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
}
}
API Service for DBT Aadhaar
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be dbt-aadhaar |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
NPCI UID seeding status (Apinexus).
| 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 |
<?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;
?>
{}
API Service for Challan PDF Find
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be challan-pdf |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Challan PDF Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be challan-pdf-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN Apply (UTI)
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN Apply (NSDL)
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-nsdl-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN NSDL List
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-nsdl-list |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Fetch Aadhaar details from PAN using Services4Public provider.
| 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) |
<?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;
?>
{
"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"
}
}
API Service for PAN without Aadhaar
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-without-aadhaar |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PAN without Aadhaar Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pan-without-aadhaar-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Download ration card PDF using ration number.
| 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) |
<?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;
?>
{}
Search ration UID/member details using ration number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to ration-uid-search |
| ration_no | string | Yes | Ration card number (e.g., 1965245748) |
<?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;
?>
{}
Download ration PDF using Aadhaar number.
| 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 |
<?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;
?>
{}
API Service for Ration All State
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be ration-all-state |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Fetch ration PDF/details using Aadhaar UID.
| 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 |
<?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;
?>
{
"status": "success",
"message": "Success",
"data": {
"status": "100"
}
}
Fetch ration card members instantly using ration number .
| 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) |
<?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;
?>
{
"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
}
}
Check application status/list. Admin can view all or filter by username.
| 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 |
<?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;
?>
{
"status": true,
"response_code": 200,
"message": "Data fetched successfully",
"data": [],
"statistics": {
"total": 0,
"pending": 0,
"completed": 0,
"rejected": 0
},
"count": 0
}
API Service for Voter Details Apply
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-details-apply |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Voter Details Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be voter-details-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Search voter details using EPIC number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to voter-details-search |
| epic | string | Yes | EPIC number (e.g., AAU1229236) |
<?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",
"epic": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Submit voter mobile link application with EPIC number, mobile number, and state.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to voter-mobile-link |
| epic_number | string | Yes | Voter EPIC number |
| mobile_number | string | Yes | 10-digit mobile number to link |
| state | string | Yes | State name or state code |
<?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",
"epic_number": "value",
"mobile_number": "value",
"state": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": true,
"message": "Application submitted successfully",
"data": {
"application_id": 123,
"operator_push": {
"success": true
},
"whatsapp": {
"success": true,
"sent": 1
},
"epic_number": "ABC1234567",
"mobile_number": "9876543210",
"state": "UP",
"status": "pending",
"fee": 40
}
}
Check voter mobile link application status.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to voter-mobile-link-status |
| application_id | string | No | Application ID to check specific status |
| epic_number | string | No | EPIC number for status lookup |
<?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",
"epic_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": true,
"applications": [
{
"application_id": 123,
"epic_number": "ABC1234567",
"mobile_number": "9876543210",
"state": "UP",
"status": "pending"
}
]
}
Instant voter mobile update using EPIC number and mobile number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to instant-voter-mobile-link |
| epic_number | string | Yes | Voter EPIC number (e.g., AAU1229236 or RJ/12/100/373027) |
| mobile_number | string | Yes | 10-digit mobile number (e.g., 9876543210) |
<?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",
"epic_number": "value",
"mobile_number": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"balance_deducted": 20,
"remaining_balance": 100.00,
"data": {
"status": true,
"response_code": 200,
"message": "Application submitted successfully",
"data": {
"epic_number": "AAU1229236",
"mobile_number": "9876543210",
"reference_number": "S020726O101530123451234",
"refId": "REF123456",
"provider_http_code": 200
}
}
}
API Service for Farmer Registration
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be farmer-registration |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Get SIM/operator details using mobile number.
| 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 |
<?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;
?>
{}
API Service for LMS Status Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be lms-status-check |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PMKisan Certificate
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be pmkisan-certificate |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Mobile Link Verify
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be mobile-link-verify |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for EID Status Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be eid-status-check |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for PUC Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be puc-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for Certificate Status
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be certificate-status |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
API Service for System Health Check
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Value must be system-health |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{}
Check Farmer Status via Agristack (Multi-state).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to farmer-stutes |
| state | string | Yes | State code (e.g., bihar, up, mp) |
| aadhaar | string | Yes | Valid 12-digit Aadhaar Number |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"state": "value",
"aadhaar": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"data": {
"status": "APPROVED",
"farmerName": "FARMER NAME"
}
}
Apply for Farmer Registry Mismatch Correction.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to farmer-mismatch |
| aadhar_no | string | Yes | Aadhaar Number |
| name_en | string | Yes | Name (English) |
| name_hi | string | Yes | Name (Hindi) |
| husband_name_en | string | Yes | Husband Name (English) |
| husband_name_hi | string | Yes | Husband Name (Hindi) |
| district | string | Yes | District |
| sub_dist | string | Yes | Sub District |
| village | string | Yes | Village |
| village_code | string | Yes | Village Code |
| gata_no | string | Yes | Gata No |
| khatauni_name_hi | string | Yes | Khatauni Owner Name (Hindi) |
| khatauni_father_name | string | Yes | Khatauni Father Name |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhar_no": "value",
"name_en": "value",
"name_hi": "value",
"husband_name_en": "value",
"husband_name_hi": "value",
"district": "value",
"sub_dist": "value",
"village": "value",
"village_code": "value",
"gata_no": "value",
"khatauni_name_hi": "value",
"khatauni_father_name": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"status": "success",
"response_code": 200,
"message": "Application Submitted Successfully",
"data": {
"application_id": 123,
"status": "Pending"
}
}
Download Agri Card PDF using Aadhaar Number.
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to agri-card-pdf |
| aadhar | string | Yes | 12-digit Aadhaar Number |
| state | string | No | State code (e.g., up, bihar, mh, ap, tn, gj, rj, mp) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhar": "value",
"state": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"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
}
}
}
Generate New Farmer PDF using Aadhaar Number and state (new version).
| 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) |
<?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;
?>
{
"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"
}
}
}
Download Old Farmer PDF (old version, low cost).
| Name | Type | Required | Description |
|---|---|---|---|
| api_key | string | Yes | Your secure API Key. |
| service | string | Yes | Must be set to farmer2 |
| aadhar | string | Yes | 12-digit Aadhaar Number |
| state | string | No | State code (e.g., up, bihar) |
<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://run.rtyu.tech/api/v1/index.php',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'GET',
CURLOPT_POSTFIELDS =>'{
"api_key": "YOUR_API_KEY",
"service": "value",
"aadhar": "value",
"state": "value"
}',
CURLOPT_HTTPHEADER => array(
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;
?>
{
"download_url": "https://...",
"file_name": "Agri_Card_123456789012.pdf",
"pdf_base64": "..."
}