AEPS Cash Withdrawal API
REST API for biometric Aadhaar cash withdrawal, mini-statement, and balance inquiry with automated multi-bank switching.
Scalable, high-concurrency API integrations engineered for fintech platforms, enterprise software, and neo-banks.
REST API for biometric Aadhaar cash withdrawal, mini-statement, and balance inquiry with automated multi-bank switching.
Native mobile SDKs and APIs to connect Bluetooth debit card readers, process chip/pin transactions, and disburse payouts.
Instant 24x7 IMPS and NEFT money transfer API for automated vendor payouts, customer remittances, and account verification.
Official Bharat BillPay (BBPS) API gateway for bill fetch, bill payment, and automated mobile/DTH operator recharges.
API endpoints for paperless PAN card issuance, Aadhaar e-Sign, and instant identity verification via NSDL & UTI databases.
Flight ticket booking, IRCTC train reservation, and motor insurance issuance APIs for travel and fintech platforms.
Integrate enterprise financial capabilities into your platform within minutes using clean JSON REST APIs, language-specific SDKs, and sandboxed test keys.
# Initiate AEPS Cash Withdrawal Request
curl -X POST https://api.apistar.pro/v1/aeps/withdraw \
-H "Authorization: Bearer sec_live_star998" \
-H "Content-Type: application/json" \
-d '{
"client_ref_id": "TXN_987123",
"aadhaar_no": "987654321098",
"amount": 10000,
"bank_iin": "607094",
"biometric_pid_xml": "<PID_DATA>"
}'
const ApiStar = require('apistar-sdk');
const client = new ApiStar({ apiKey: 'sec_live_star998' });
async function processPayout() {
const response = await client.dmt.transfer({
accountNumber: "39281092831",
ifscCode: "SBIN0001029",
amount: 25000,
mode: "IMPS"
});
console.log(response.status); // "SUCCESS"
}
processPayout();
<?php
// API STAR PHP Integration
$ch = curl_init("https://api.apistar.pro/v1/bbps/pay");
curl_setopt($ch, CURLOPT_HTTPHEADER, [
"Authorization: Bearer sec_live_star998",
"Content-Type: application/json"
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
"biller_id" => "MSEB001",
"consumer_no" => "1029384756",
"amount" => 3450
]));
$response = curl_exec($ch);
?>
import requests
url = "https://api.apistar.pro/v1/recharge/do"
headers = {
"Authorization": "Bearer sec_live_star998",
"Content-Type": "application/json"
}
payload = {
"operator": "JIO",
"mobile_no": "9876543210",
"amount": 299
}
response = requests.post(url, json=payload, headers=headers)
print(response.json())
Read how CTOs and Product Managers rely on API STAR for mission-critical financial integrations.
"API STAR's AEPS and Money Transfer APIs are blazingly fast. Their automated webhook delivery and 99.99% uptime helped our neo-banking app scale smoothly."
"Integrating their Micro ATM Android SDK into our POS app took less than two days. Their API documentation and sandbox testing environment are top-notch."
"Their BBPS and Recharge API gateway handles over 100,000 requests per day for our app with zero downtime. Exceptional tech support team."
Start building with API STAR financial infrastructure. Instant API keys and developer support available.
Need custom API rates, dedicated bandwidth, or enterprise SLAs? Contact our developer sales team.