One unified API to accept payments, send payouts, and manage transactions across Africa. Built for developers who demand reliability.
A complete payment orchestration platform designed for African markets
One API, multiple payment gateways. Paystack, EcoCash, and more.
Process payments in ZAR, ZWG, USD, NGN with automatic provider routing.
Disburse funds to bank accounts and mobile wallets seamlessly.
Bank-grade encryption, audit logs, and role-based access control.
Real-time event notifications with signature validation.
Track transactions, monitor success rates, and optimize conversion.
Integrate in minutes, not weeks. Our clean REST API handles the complexity of multiple payment providers so you can focus on building your product.
// Create a payment intent
const response = await fetch('/api/v1/payments/intents', {
method: 'POST',
headers: {
'Authorization': 'Bearer sk_live_...',
'Content-Type': 'application/json',
},
body: JSON.stringify({
amount: 5000,
currency: 'ZAR',
customer_email: 'customer@example.com',
description: 'Order #1234',
callback_url: 'https://yourapp.com/confirm',
}),
});
const { authorization_url } = await response.json();
// Redirect customer to complete payment