Developer First
Build with Lonepay
Powerful APIs to integrate payments, virtual cards, and financial services into your application.
RESTful API
Clean, predictable, and well-documented API endpoints for all financial operations.
SDKs & Libraries
Official SDKs for Node.js, Python, PHP, and mobile platforms to speed up integration.
Webhooks
Real-time notifications for transaction status updates, chargebacks, and more.
// Initialize Payment
const payment = await lonepay.transactions.initialize({
amount: 5000,
currency: 'NGN',
email: 'customer@example.com',
callback_url: 'https://your-site.com/callback'
});
console.log(payment.authorization_url);