Integrate payments in just a few lines of code. Modern, documented and easy-to-use REST API.
const response = await fetch('https://api.iziflow.com/v2/payments', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_SECRET_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
amount: 5000,
currency: 'XOF',
method: 'orange_money',
customer: {
phone: '+221701234567',
email: '[email protected]'
}
})
});
const payment = await response.json();
console.log(payment);
Libraries maintained by Izi Flow for even faster integration
Composer package
composer require iziflow/php-sdk
NPM package
npm install @iziflow/sdk
PyPI package
pip install iziflow
Maven Central
com.iziflow:sdk
A complete ecosystem built for developers