MOBIAP Demo
Multi-acquiring payment gateway with tokenization, split payments, escrow, and PCI DSS Level 1 certification.
Interactive Demo
Code Example
// Initialize payment gateway
const gateway = new PaymentGateway({
apiKey: 'your_api_key',
merchantId: 'merchant_123',
environment: 'sandbox' // sandbox | production
});
// Create payment
const payment = await gateway.createPayment({
amount: 1500.00,
currency: 'USD',
description: 'Order #4281',
split: [
{ merchant: 'submerchant_1', amount: 1200.00 },
{ merchant: 'submerchant_2', amount: 300.00 }
],
escrow: { holdPeriod: 3 } // days
});
// Redirect to payment page
window.location.href = payment.paymentUrl;Features
Let's discuss your project, show a demo, and estimate the cost.