Developer Platform
Build with
Strongmb
Nigeria's #1 bill payment API. Airtime, data, cable TV, electricity, and more — one unified REST API that works in minutes.
9+Services
v1Current API
RESTArchitecture
3Official SDKs
const { Strongmb } = require('@strongmb/node');
const client = new Strongmb('sk_live_...');
(async () => {
const res = await client.data.purchase({
phone: '08012345678',
productCode: 'smb_mtn_sme_1gb_30days',
reference: 'MYAPP' + Date.now(),
});
if (res.successful()) {
const d = res.data();
console.log(`✓ 1GB sent to ${d.recipient}`);
console.log(` Balance: ₦${d.balance_after}`);
} else if (res.processing()) {
console.log('⏳ Processing… poll by reference.');
}
})();