MOBIAP Demo
White-label payment page with custom branding, multi-acquiring routing, and escrow support. Fully PCI DSS Level 1 certified.
Interactive Demo
Code Example
// Embed payment page
<iframe src="https://pay.mobiap.com/checkout/{session_id}"
width="100%" height="600" frameborder="0">
</iframe>
// Create checkout session
const session = await checkout.createSession({
merchantId: 'merchant_789',
amount: 5499.00,
currency: 'USD',
skin: 'dark_theme',
methods: ['card', 'apple_pay', 'wallet'],
successUrl: 'https://example.com/success',
failUrl: 'https://example.com/fail'
});
// Smart routing
const route = await checkout.smartRoute({
sessionId: session.id,
amount: 5499.00,
method: 'card',
bin: '4276******1234'
});
// Selects optimal acquirerFeatures
Let's discuss your project, show a demo, and estimate the cost.