Comprehensive payment solutions designed to power your business growth in Africa
Accept payments seamlessly through M-Pesa, cards, and bank transfers. Get instant notifications and automated reconciliation.
Manage your entire business with our comprehensive suite of tools designed for growth and efficiency.
Integrate our powerful payment APIs into your systems with comprehensive documentation and support.
curl -X GET https://api.darajapay.com/v1/account/balance \
-H "Authorization: Bearer YOUR_API_KEY"
const darajapay = require('darajapay-wrapper');
const daraja = new darajapay('YOUR_API_KEY');
daraja.account.getBalance()
.then(response => {
console.log(response);
})
.catch(error => {
console.error(error);
});
<?php
require_once 'path/to/darajapay-php/vendor/autoload.php';
$daraja = new DarajaPay\DarajaPay('YOUR_API_KEY');
try {
$response = $daraja->account->getBalance();
print_r($response);
} catch (Exception $e) {
echo "Error: " . $e->getMessage();
}
from darajapay import DarajaPay
daraja = DarajaPay('YOUR_API_KEY')
response = daraja.account.get_balance()
print(response)
Join thousands of businesses using DarajaPay to manage their payments