Bonaventure OgetoBy Bonaventure Ogeto|

Payment Methods Available on Paystack in Cote d'Ivoire

Paystack in Cote d'Ivoire supports mobile money (Orange Money, MTN Mobile Money, Moov Money) and card payments (Visa, Mastercard). Mobile money is the dominant payment method, with Orange Money having the largest market share.

Available Payment Channels

Paystack in Cote d'Ivoire offers two channel categories.

  • Mobile Money: Orange Money, MTN Mobile Money, and Moov Money. The customer selects their provider, enters their phone number, and authorizes via USSD prompt.
  • Cards: Visa and Mastercard debit and credit cards with standard authentication.
var response = await fetch('https://api.paystack.co/transaction/initialize', {
  method: 'POST',
  headers: {
    Authorization: 'Bearer ' + process.env.PAYSTACK_SECRET_KEY,
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: 'client@example.ci',
    amount: 500000,
    currency: 'XOF',
    channels: ['mobile_money', 'card'],
    reference: 'ci_' + Date.now(),
  }),
});

Orange Money

Orange Money is the largest mobile money provider in Cote d'Ivoire. Orange has the widest network coverage and the most active mobile money users in the country.

Authorization flow:

  1. Customer selects "Mobile Money" at checkout
  2. Customer chooses Orange as their provider
  3. Customer enters their Orange phone number
  4. A USSD prompt appears on their phone (in French)
  5. Customer enters their Orange Money PIN
  6. Payment is confirmed via webhook

Orange Money considerations:

  • The USSD menus are in French. Your checkout messaging should also be in French.
  • Orange Money has daily and monthly transaction limits. Customers hitting their limit will see a failure.
  • Network coverage is generally good in urban areas (Abidjan, Bouake, Yamoussoukro) but varies in rural regions.

MTN Mobile Money and Moov Money

MTN Mobile Money: The second largest mobile money provider in Cote d'Ivoire. MTN MoMo works the same way as in other MTN markets: USSD-based authorization with PIN entry. MTN has strong coverage across the country.

Moov Money: Moov Africa (formerly Moov) is the third provider. The authorization flow mirrors the other providers: phone number entry, USSD prompt, PIN authorization.

All three providers are accessed through the same Paystack mobile money channel. The customer selects their provider at the Paystack checkout, and Paystack routes the payment to the correct network.

Phone number identification:

  • Ivorian phone numbers have a +225 country code followed by 10 digits
  • Different providers have different number prefixes
  • Validate the phone number format before submitting to Paystack
// Normalize Ivorian phone numbers
function normalizeIvorianPhone(phone) {
  var cleaned = phone.replace(/[s-()]/g, '');
  // Add country code if missing
  if (cleaned.length === 10) {
    return '+225' + cleaned;
  }
  if (cleaned.indexOf('225') === 0 && cleaned.length === 13) {
    return '+' + cleaned;
  }
  return cleaned;
}

Card Payments

Card payments in Cote d'Ivoire work for Visa and Mastercard holders. Card usage is less common than mobile money for consumer transactions, but serves specific segments.

Who uses cards:

  • Business customers with bank-issued corporate cards
  • Urban professionals in Abidjan
  • International customers and expatriates
  • Customers of international services

Card considerations for Cote d'Ivoire:

  • Card penetration is lower than in Nigeria or South Africa
  • For consumer products, mobile money will generate far more transactions
  • Cards are useful for recurring billing where authorization reuse is valuable

Channel Strategy for Cote d'Ivoire

Cote d'Ivoire is a mobile money market. Your channel strategy should reflect this.

Consumer products: Mobile money first (all three providers), cards as a secondary option.

SaaS subscriptions: Cards for authorization reuse, but offer mobile money for initial signup. Consider manual renewal prompts for mobile money subscribers.

E-commerce: Mobile money as the primary channel. Most purchases will come through Orange Money, MTN MoMo, or Moov Money.

B2B: Cards and bank transfers. Business customers may prefer cards for reconciliation.

French localization is non-negotiable:

  • Checkout buttons: "Payer" (Pay)
  • Channel labels: "Mobile Money", "Carte bancaire" (Bank card)
  • Success: "Paiement effectue avec succes" (Payment completed successfully)
  • Error: "Le paiement a echoue. Veuillez reessayer." (Payment failed. Please try again.)

Testing Channels

Test all three mobile money providers and cards before going live:

  • Orange Money: Simulate successful and failed payments. Verify webhook handling.
  • MTN MoMo: Same testing pattern. Verify both providers work in your system.
  • Moov Money: Complete the same tests for the third provider.
  • Cards: Use Paystack test cards. Test success and failure scenarios.

After launch, track which providers generate the most volume and which have the highest failure rates. Use this data to optimize your checkout messaging and error handling for each provider.

Build for Francophone Africa

Cote d'Ivoire's three mobile money providers give your customers options. French localization and mobile money-first design are the keys to conversion in this market.

The McTaba bootcamp covers payment integration for diverse African markets. Build systems that handle multiple currencies, languages, and mobile money providers.

Create a free McTaba account

Key Takeaways

  • Cote d'Ivoire has three mobile money providers on Paystack: Orange Money, MTN Mobile Money, and Moov Money.
  • Orange Money has the largest market share. It should be the first mobile money option in your checkout.
  • Card payments (Visa, Mastercard) serve a narrow segment. Mobile money is the primary payment method.
  • All customer-facing text should be in French. English-only checkouts lose conversions in Cote d'Ivoire.
  • Phone number format is +225 followed by 10 digits. Validate and normalize before sending to Paystack.
  • USSD-based authorization is standard for all three mobile money providers. Allow adequate time for authorization.

Frequently Asked Questions

What mobile money providers does Paystack support in Cote d'Ivoire?
Paystack supports Orange Money, MTN Mobile Money, and Moov Money in Cote d'Ivoire. Orange Money has the largest market share.
Do I need to localize my checkout for Cote d'Ivoire?
Yes. Cote d'Ivoire is French-speaking. Your checkout, error messages, and confirmation messages should be in French to maximize conversion rates.
Which channel converts best in Cote d'Ivoire?
Mobile money converts best for consumer products. Orange Money generates the most transactions due to its large user base. Cards serve a smaller but valuable segment.
What currency does Paystack use in Cote d'Ivoire?
Paystack uses XOF (CFA Franc) in Cote d'Ivoire. The XOF is pegged to the Euro at 655.957 XOF per 1 EUR and does not use subunits in practice.

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