Settlement and Payouts on Paystack in Kenya
Paystack Kenya settles KES to your registered Kenyan bank account on T+1 or T+2. To send KES payouts, create transfer recipients via POST /transferrecipient with currency: "KES" and the Kenyan bank code. Use GET /bank?currency=KES to get supported Kenyan bank codes. KES amounts in the API are in the smallest unit (multiply by 100). Note: M-Pesa wallet-to-wallet payouts via the Paystack Transfer API are not available in Kenya — bank account payouts are the standard payout method.
KES Settlement Timeline
Paystack Kenya settles KES to your Kenyan bank account 1-2 business days after the transaction. Banks supported for settlement: KCB (Kenya Commercial Bank), Equity Bank Kenya, Co-operative Bank of Kenya, NCBA Bank, Standard Chartered Kenya, Absa Kenya, I&M Bank Kenya, DTB (Diamond Trust Bank).
Settlement operates through Kenya's KEPSS (Kenya Electronic Payment and Settlement System), the RTGS system managed by the Central Bank of Kenya. Interbank transfers route through KEPSS for high-value settlements, with retail transactions going through the PesaLink interbank infrastructure.
Sending KES Payouts to Kenyan Bank Accounts
// Create a KES bank account recipient for Kenya
async function createKESRecipient(name, accountNumber, bankCode) {
var res = await fetch('https://api.paystack.co/transferrecipient', {
method: 'POST',
headers: { Authorization: 'Bearer ' + process.env.PAYSTACK_SECRET_KEY, 'Content-Type': 'application/json' },
body: JSON.stringify({
type: 'nuban', // Check Paystack docs for Kenya-specific type
name,
account_number: accountNumber,
bank_code: bankCode, // e.g., '01' for KCB, '68' for Equity, '11' for Co-op
currency: 'KES',
}),
});
var data = await res.json();
return data.data.recipient_code;
}
// Send KES payout
async function sendKESPayout(recipientCode, amountKES, reason) {
var res = await fetch('https://api.paystack.co/transfer', {
method: 'POST',
headers: { Authorization: 'Bearer ' + process.env.PAYSTACK_SECRET_KEY, 'Content-Type': 'application/json' },
body: JSON.stringify({
source: 'balance',
amount: Math.round(amountKES * 100), // KES to smallest unit
recipient: recipientCode,
reason,
currency: 'KES',
}),
});
return res.json();
}
// Get supported Kenyan bank codes
async function getKenyanBanks() {
var res = await fetch('https://api.paystack.co/bank?currency=KES', {
headers: { Authorization: 'Bearer ' + process.env.PAYSTACK_SECRET_KEY },
});
var data = await res.json();
return data.data; // Array of { name, code } objects
}
M-Pesa Payouts: What Paystack Supports
M-Pesa is the dominant payment method for collections in Kenya via Paystack — customers pay using M-Pesa STK push. However, the Paystack Transfer API in Kenya does not support M-Pesa wallet-to-wallet payouts the same way Ghana supports mobile money payouts.
For vendor or marketplace payouts in Kenya, use bank account recipients. If you need to disburse to M-Pesa wallets directly, options include: Safaricom's B2C Daraja API (requires a Safaricom paybill/till), third-party disbursement services, or checking the latest Paystack Kenya documentation as this capability may be updated.
Learn More
This guide is part of the Paystack by country guide.
Key Takeaways
- ✓Paystack Kenya settles KES to your Kenyan bank account T+1 or T+2.
- ✓KES amounts in the transfer API are in the smallest unit (multiply KES by 100).
- ✓Create transfer recipients with currency: "KES" and Kenyan bank codes from GET /bank?currency=KES.
- ✓M-Pesa wallet payouts via the Paystack Transfer API are not currently available in Kenya — use bank account recipients.
- ✓Common settlement banks: KCB, Equity Bank Kenya, Co-operative Bank, NCBA, Standard Chartered Kenya.
- ✓Weekend and Kenyan public holiday transactions settle on the next business day.
Frequently Asked Questions
- Can I send M-Pesa payouts via the Paystack Transfer API in Kenya?
- M-Pesa wallet disbursements via the Paystack Transfer API are not available in Kenya the way mobile money payouts work in Ghana. Kenya Paystack payouts go to bank accounts. For M-Pesa B2C disbursements, use Safaricom's Daraja B2C API directly, or a third-party disbursement platform. Check current Paystack Kenya documentation as payout options may expand.
- What are the Kenyan bank codes for Paystack recipients?
- Common Kenyan bank codes: KCB: 01, Equity Bank: 68, Co-operative Bank: 11, NCBA: 07, Standard Chartered: 02, Absa Kenya: 03, I&M Bank: 57, DTB: 63. Use GET /bank?currency=KES to get the full and current list from Paystack, as codes occasionally change and new banks may be added.
- Why is my KES settlement delayed?
- Common causes: Kenyan public holiday in the settlement window (Kenya has several public holidays including Madaraka Day, Jamhuri Day, and Mashujaa Day), unverified settlement bank account, transaction flagged for review, or a bank-side processing delay. Check your Paystack dashboard and contact Paystack Kenya support if settlement is more than 3 business days late.
- Does Paystack Kenya support PesaLink transfers?
- Paystack's settlement infrastructure in Kenya uses the established interbank systems including KEPSS and PesaLink for interbank KES transfers. As a merchant, you do not interact with PesaLink directly — Paystack handles the interbank routing. Your settlement arrives in your bank account via the standard T+1/T+2 cycle.
Ready to build real-world apps?
Join the McTaba Labs full-stack marathon (4 months full-time · 6 months part-time). Learn M-Pesa, USSD, and WhatsApp engineering while shipping 8 production apps.
Apply to the McTaba Marathon