The ultimate developer-first payment gateway powered natively by Paytm Merchant API. Zero arbitrary restrictions, infinite scalability, and instant settlements.
Everything you need to accept payments reliably.
Direct integration with Paytm's secure nodes. Wallet, Cards, Netbanking and UPI intents natively supported.
Instant HMAC-SHA256 signed POST requests to your server the millisecond a payment is confirmed.
Add your logo, brand name, and custom colors to the checkout page. Make it completely yours.
Generate shareable payment links instantly from the dashboard. Perfect for Telegram bots and social media.
Every callback is verified via checksum AND double-checked against Paytm's live Status API. Zero spoofing.
Payments made after UI expiry are caught silently in the background and recovered seamlessly.
Register and instantly generate your 64-character API key.
Send a simple POST request to our /api/v1/create.php endpoint.
Get notified instantly on your server when the user pays.
$ch = curl_init('https://tuman.abhrostore.in/api/v1/create.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'X-API-KEY: your_64_char_api_key',
'Content-Type: application/json'
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode([
'order_id' => 'ORD_' . time(),
'amount' => 499.00,
'customer_email' => 'user@example.com'
]));
$response = curl_exec($ch);
$data = json_decode($response, true);
echo "Payment URL: " . $data['payment_url'];
Start free. Scale without limits.