Integrate Bakong KHQR payment into your app with a few lines of code. Fast, secure, and built for Cambodian developers.
$response = Http::withToken('your_api_key')
->post('https://api.qrpay.app/v1/qr', [
'amount' => 25.00,
'currency' => 'USD',
'memo' => 'Order #1234',
]);
$qrCode = $response['qr_image'];
$deeplink = $response['deeplink'];
$25 USD
NBC Verified
Bakong Partner
Simple, fast, and developer-friendly KHQR payment integration.
Generate Bakong KHQR codes for USD and KHR with one API call. Returns base64 PNG ready to display.
Real-time payment verification through Bakong API. Know instantly when a customer has paid.
Generate Bakong deep links to open payment directly in the Bakong mobile app.
Each account gets a unique hashed API key. Rate limiting and request logging included for security.
Optimized for speed with response caching. Get your QR code in milliseconds, not seconds.
Track API calls, success rates, and payment volumes from your dashboard in real time.
Start free. Upgrade when you grow.
Perfect for testing & small projects
Monthly — pay as you go
Annual — best value plan
$1.25 / month — save $9.00 vs monthly
All Pro plans include the same features. Yearly billing locks in the lowest price.
Just a few lines of code to start accepting payments.
// 1. Set your API key in .env: QRPAY_API_KEY=sk_live_...
$response = Http::withToken(env('QRPAY_API_KEY'))
->post('https://api.qrpay.app/v1/generate', [
'amount' => 5.00,
'currency' => 'USD',
'memo' => 'Order #1234',
]);
$qrCode = $response['qr_image']; // base64 PNG
$deeplink = $response['deeplink']; // bakong://...
$txId = $response['transaction_id']; // for status check
Sign up free today. No credit card required. Start accepting payments in minutes.