Public Alpha Live

The Revenue Engine for
African Mobile Apps.

Integrate Paystack, Flutterwave, and App Stores with one SDK. SolydFlow handles smart routing, offline entitlements, and transaction recovery so you don't have to.

Start Building for Free Read the Docs

Unified Infrastructure For

Paystack

Flutterwave

Apple App Store (in-view)

Google Play (in-view)

🌍

Smart Currency Routing

Automatically route Nigerian users to Paystack and Kenyan users to Flutterwave (M-Pesa). Define rules in your dashboard, not your code.

Offline-First Entitlements

Network drops shouldn't lock users out. Our SDK caches encrypted receipts locally, ensuring premium features work even in airplane mode.

🔄

Zombie Transaction Recovery

If a user pays via USSD and their battery dies, we reconcile the transaction via webhooks and unlock the app automatically when they return.

15 Minutes to Implementation.

Stop building custom backends for payments. SolydFlow provides a unified, typed SDK that handles the complexity of African payments.

  • No backend code required
  • Instant "Pro" status updates
  • Remote configuration of prices
// 1. Initialize
await SolydFlow.configure(apiKey: "sf_live_...");

// 2. Check Access (Offline-Ready)
if (await SolydFlow.hasEntitlement("pro_access")) {
  unlockFeature();
} else {
  // 3. Buy (Paystack / M-Pesa / Apple)
  await SolydFlow.purchasePackage(ctx, "monthly_pro");
}