Data reselling is one of the most accessible micro-businesses in Nigeria: source bundles from a licensed aggregation partner via an API, apply your margin, and sell to customers who get instant delivery. No inventory, no physical stock, no cash handling. This guide covers the full setup — from choosing a provider to automating fulfilment and scaling with volume tiers.
How data reselling actually works
You are not a network operator. You're a reseller: you buy airtime or data capacity from a licensed aggregation partner at a wholesale rate and sell it to end customers at a retail price. The difference is your gross margin.
The mechanics are simple once the API is integrated:
- A customer orders a data bundle on your app or through your agent.
- Your system calls the data API with the plan, the customer's phone number, and a unique order ID.
- The bundle is credited to the phone within seconds.
- You collect the retail price; the API debits the wholesale cost from your wallet.
That's it. The complexity is in the business — float management, pricing, customer acquisition, support — not in the technical integration.
Choosing the right API provider
Your provider is your upstream cost and your reliability ceiling. Weigh these attributes:
- Network coverage. All four networks — MTN, Glo, Airtel, 9mobile — behind one API key. Switching providers mid-stream is painful, so verify coverage before signing up.
- Idempotency. Every purchase should accept a
clientReferencethat you control. If the call times out and you retry, the API returns the original result rather than debiting again. This is non-negotiable for a business handling real money. - Auto-refunds on failure. When a delivery ultimately fails, the debit should be reversed to your wallet automatically. Without this, you're chasing refund tickets for lost kobo.
- Catalog access. The API should expose your exact cost per plan before you buy, so you can price accurately. Some providers hide this — avoid them.
- Wallet funding. A dedicated bank account number that auto-credits your wallet on transfer removes friction from top-ups and keeps your float liquid.
Plustive covers all four networks through one prepaid wallet, returns your cost in the plan catalog, enforces idempotency on clientReference, and auto-refunds failed deliveries. See the API integration quickstart for the first working call.
Pricing your data plans
When you query GET /api/v1/plans, each plan comes back with a price field — your cost in kobo. Your retail price is that cost plus your margin. A few considerations:
- Benchmark against the market. Check what customers currently pay for the same bundle on other reseller platforms. Being slightly cheaper wins traffic; being much cheaper is unsustainable.
- Factor in your payment processing cost. If customers pay you by card or bank transfer, the processing fee (1–1.5%) comes off your margin, not the cost. Price it in.
- Use integer kobo end-to-end. Convert to naira only for display. Rounding at the calculation layer accumulates errors at volume.
- Re-query the catalog regularly. Wholesale prices can change, especially after network policy updates. A price you haven't checked in a month may no longer be profitable.
Selling via app, agents, or social
The API integration doesn't change based on how you sell. Your distribution options:
- Mobile or web app. The highest-leverage option for direct-to-consumer scale. Customers self-serve, orders fire automatically on payment, and your only manual work is float management.
- Agent network. Each agent has a dashboard or app to process orders for their own customers. You assign each agent a sub-account or track orders by agent ID. Scales without requiring your own consumer brand.
- WhatsApp or social bots. Lower barrier to entry. A bot in a WhatsApp group or on Instagram DMs can handle order intake and pass it to the API. Useful for early-stage validation before you build a full app.
- Embedded in another product. If you already have a fintech, POS, or e-commerce audience, adding data reselling as a feature is the highest-margin distribution (lowest CAC).
Scaling with volume tiers
At low volumes your margin is what the provider publishes. As you grow, you may be able to negotiate a lower per-plan cost. A few things accelerate this:
- Track your monthly volume per network. When you know your numbers, you can negotiate credibly.
- Concentrate volume on fewer networks or plan types. Depth is more negotiable than breadth.
- Re-price to pass some savings to customers — a lower retail price drives more volume, which justifies further negotiation.
Data reselling is a volume game. The business model works at scale; it's tight at low volumes. Build for throughput from the start.