Content micro-payment: the math problem in 2026
Selling an article 200 FCFA, a song 350 FCFA, a video 450 FCFA — theoretically viable, but payment fees blow up unit economics:
- Stripe: 2.9% + 100 FCFA fixed = on 200 FCFA, 152 FCFA fees (76%)
- Wave Business: 1.5% + 50 FCFA fixed = on 200 FCFA, 53 FCFA fees (26%)
- Orange Money: 1.8% + 75 FCFA fixed = on 200 FCFA, 78 FCFA (39%)
At this fee level, impossible to monetize natively. We must architect differently.
Here are the 5 patterns that work in 2026 + Substack, Brave Browser, Patreon examples.
H2: Pattern 1 — Prepaid wallet (the standard)
User tops up 5,000-50,000 FCFA in one transaction (Wave/Stripe fees diluted), then consumes via internal micro-debits (zero fees).
\\\`ts
// Top up wallet
async function topUpWallet(userId: string, amount: number) {
// 1 Wave transaction: 1.5% + 50 FCFA fees
await waveBusiness.payments.create({
customer_phone: user.phone,
amount,
description: 'Content wallet top-up',
});
await db.wallet.update({
where: { userId },
data: { balance: { increment: amount } },
});
}
// Content consumption (zero fees)
async function unlockArticle(userId: string, articleId: string, priceFcfa: number) {
await db.$transaction([
db.wallet.update({
where: { userId },
data: { balance: { decrement: priceFcfa } },
}),
db.contentAccess.create({
data: { userId, articleId, paidAt: new Date() },
}),
]);
}
\\\`
Economics on 50,000 FCFA top-up: Wave fees 800 FCFA = 1.6% instead of 26-76%. Profitable.
H2: Pattern 2 — Short subscription (day/week)
Rather than sell 1 article at 200 FCFA (impossible), sell 1 day unlimited access at 1,500 FCFA or 1 week 5,000 FCFA.
For the user who wanted to read 1 article: conversion difficult. But for whoever wants to consume 8-15 articles/week: excellent deal. Substack/Medium model.
| Format | Price | Articles included | Cost per article |
|---|---|---|---|
| Day | 1,500 FCFA | unlimited | low if 5+ |
| Week | 5,000 FCFA | unlimited | very low if 20+ |
| Month | 12,000 FCFA | unlimited | optimal for regulars |
| Year | 95,000 FCFA | unlimited | best deal -34% |
H2: Pattern 3 — Multi-content bundle
Need a professional website?
Kolonell builds websites that attract clients, optimized for the Sénégalese market. Free quote in 2 minutes.
Sell 10 articles, 5 videos, 1 music album in 1 transaction (3,500-9,800 FCFA) rather than à la carte. Payment fees absorbed.
Bandcamp / Beatport example model: artist sells 8-track album at 4,500 FCFA. Wave fees 1.5% + 50 = 117 FCFA. Artist margin after 15% platform = 3,700 FCFA / album.
H2: Pattern 4 — Lightning Network (Bitcoin) — emerging
Brave Browser + Twetch + Stacker News: near-instant sub-cent crypto payments via Lightning Network (Bitcoin layer 2).
In Senegal 2026: limited but emerging adoption (DAKAR HUB Bitcoin, Bitcoin Senegal community ~3,500 active). Lightning payment fees: 0.1-0.5 sat (~0.02-0.1 FCFA). Compatible with 50-500 FCFA equivalent micro-payments.
\\\`ts
// Streaming sats per second of video watched
async function streamPaymentPerSecond(viewerId: string, creatorId: string) {
const ratePerSecond = 0.5; // sats / second
setInterval(async () => {
await lightningNode.sendPayment({
from: viewerId,
to: creatorId,
amountSats: ratePerSecond,
});
}, 1000);
}
\\\`
SN limitations: XOF → BTC conversion needed (Yellow Card, NoOnes), BTC price volatility, fuzzy BCEAO crypto compliance. To watch 2027-2028.
H2: Pattern 5 — Pay-what-you-want after reading
Free access article, "Tip artist" button at bottom with presets (500 / 1,500 / 5,000 FCFA + custom). 2-5% conversion, 1,800 FCFA average tip.
Patreon, Buy Me a Coffee model adapted to Senegal: Wave Business with one-shot mandates.
H2: Unit economics prepaid wallet pattern
| Metrics | Typical 2026 values |
|---|---|
| Active monthly ARPU | 8,500-22,000 FCFA |
| Average top-up | 12,000 FCFA |
| Top-up frequency | 1.8 / month |
| Diluted Wave fees | 1.6-2.2% |
| Platform margin (after 70% creator share) | 22-28% |
| 18-month LTV | 95,000-185,000 FCFA |
| Viable max CAC | 18-32 KFCFA |
H2: Compliance
- BCEAO: prepaid wallet > 300 KFCFA balance requires delegated payment institution declaration
- Creator taxation: payout > 100 KFCFA/month requires creator NINEA + 5% source withholding if non-resident
- VAT 18%: on platform commission only, not on creator payout
- Copyright: SACEM/BSDA Senegal verification for music (works declaration)
FAQ
Which pattern to choose if starting?
Start with short subscription (week/month) — simple, predictable, payment fees amortized over 1 large monthly transaction. Add prepaid wallet in year 2 if users habituated. Bundles as occasional complement.
Stripe or Wave for micro-payments?
Wave for > 95% of SN cases (50 FCFA fixed fees vs Stripe 100 FCFA + dollar, native mobile money). Stripe only for international paying diaspora or SN expats.
How much does a typical creator earn?
Blog article/Substack-like SN: 8-35 K free subscribers, conversion 3-5% paying = 240-1,750 paying subscribers × 12 K FCFA/month = 2.9-21 M FCFA / month. Top 10% reach 45-180 M FCFA / year.
Lightning Network realistic in 2026 SN?
Niche for tech early adopters (gamers, devs, crypto traders). Marginal volume < 0.5% of micro-payment transactions. To watch 2027-2028 if Senegal Bitcoin adoption accelerates + Wave/Orange add BTC ramp.
How to manage creator payouts?
Automatic monthly payout (D+5 close of following month) via Wave Business Transfers. Minimum threshold 5,000 FCFA (otherwise carry to next month). Automatic creator tax statement generation (CSV + PDF) for accounting. Standard 15-30% platform commission.
Let's discuss your micro-payment
If you are launching a content platform (articles, videos, music, podcasts) in Senegal needing micro-payments, we design the wallet + subscription + creator payout architecture. WhatsApp +221 77 596 93 33.
Mohamed Bah
Fondateur, Kolonell
Passionate about digital and entrepreneurship in Africa, Mohamed has been helping Sénégalese businesses with their digital transformation since 2020. Founder of Kolonell, he believes every SME deserves a professional and accessible online présence.

