ENGINE v3.1 0.22s Automated Dispatch is live across all networks & DStv Try Simulator →
Sign In Plug In Free
99.99% Uptime · 0.22s Automated Dispatch

The Ultimate Wholesale Plug for VTU, Cheap Data & Digital Utilities

Direct wholesale telecom gateway for high-earning agents and API developers. Plug into SME data from ₦225/GB, reconnect DStv & GOtv instantly, generate prepaid power tokens, and dispense WAEC/NECO scratch pins with 100% automated refund guarantee.

₦850M+

Volume Processed

0.22s

Avg Dispatch Speed

78,000+

Active Resellers

100%

Auto-Refund Vault

Quick Plug Live Simulator
⚡ Instant Sandbox
🟡 MTN
🔴 Airtel
🟢 Glo
🟢 9mobile
Wholesale Cost
+₦12 Instant Cash Reward
₦225
Amount Payable
Direct Signal Unblock
₦11,000
Wholesale Price
Instant Serial & Token Dispense
₦3,400
Directly Integrated with 40+ Telecom Operators, Power Discos & Exam Bodies
MTN Nigeria
Airtel Africa
Globacom (Glo)
9mobile Nigeria
DStv Multichoice
GOtv Entertainment
WAEC National
Ikeja & Eko Electric
NECO Result Portal

The Unified Digital Terminal for Telecom & Utilities

Experience lightning-fast API responses, automated ledger accounting, and instantaneous carrier dispatch designed for high-scale operations.

Production Active (0.22s)
WistonPlug 3D Fintech Interface
Automated Dispatch
₦225/GB · 0.22s Top-Up
MTN · Airtel · Glo · 9mobile
Exam Token Vault
WAEC & NECO Dispenser
Instant Serial & Pin Delivery
Utility Reconnection
Direct Smartcard Validation
DStv · GOtv · 20-Digit Power Token
0.22s Average Delivery

Direct telco routing with zero queue backlog

🛡️
Bank-Grade 256-Bit TLS

Cryptographic API keys & hashed payloads

🔄
Automated Refund Vault

Instant wallet credit if telco network errors

📈
Enterprise 99.99% SLA

Redundant carrier fallbacks & round-the-clock uptime

Engineered for Consumers, Agents & Wholesale Resellers

From personal daily data purchases to high-throughput enterprise API infrastructure, WistonPlug delivers frictionless digital utilities with guaranteed zero downtime.

Automated VTU Data & Airtime

Access wholesale SME, Corporate Gifting, and Direct data bundles starting as low as ₦220/GB. Instant automated top-ups 24/7 across MTN, Airtel, Glo, and 9mobile.

  • Up to 6% discount on Airtime
  • SME & Direct Gifting options
  • Automated failover routing

Instant Cable TV Reconnection

Direct smartcard validation and renewal for DStv, GOtv, Startimes, and Showmax. Immediate signal unblocking and receipt generation with zero service charge.

  • Real-time customer name lookup
  • 0.3s Bouquet signal unblock
  • ₦0 convenience / agent fee

20-Digit Electricity Tokens

Generate prepaid power tokens instantly for all Nigerian Discos (IKEDC, EKEDC, AEDC, IBEDC, PHED, etc.). Token displayed instantly on screen and dispatched via SMS.

  • Meter number account verification
  • Instant 20-digit token generation
  • Prepaid & Postpaid support

WAEC, NECO & NABTEB Pins

Buy wholesale examination scratch card pins and result tokens at rock-bottom distributor pricing. Instant serial and pin delivery via dashboard and webhooks.

  • 100% Genuine exam board cards
  • Instant digital pin display
  • Bulk purchases for cybercafés

Dedicated Virtual Accounts

Every user receives personal automated bank accounts (Wema, Moniepoint, Sterling). Transfer any amount from your bank app for instant wallet credit in 2 seconds.

  • Real-time NIBSS settlement
  • Zero manual admin verification
  • 24/7 round-the-clock funding

Reseller REST API & Webhooks

Integrate our ultra-fast JSON endpoints into your VTU portal, mobile app, or Telegram bot. Robust webhook events, sub-account management, and zero rate-limiting.

  • Comprehensive JSON documentation
  • Sub-account & API key scoping
  • Instant asynchronous webhooks

Calculate Your Monthly Wholesale Earnings

See how much profit you can pocket each month reselling wholesale data bundles to students, businesses, and phone users.

500 GB / month
50 GB (Starter) 1,000 GB 2,500 GB 5,000 GB (Enterprise)
💡 How WistonPlug Margins Work:

You buy 1GB SME wholesale from WistonPlug at ₦225 and retail it at current market rates between ₦320 – ₦360. You keep 100% of the net spread plus instant cashback rewards credited automatically.

Estimated Monthly Net Profit
₦62,500
Cashback Bonus ₦7,500
Gross Revenue ₦175,000
Start Reselling Today →

Built for Speed, Scalability & Zero Downtime

Connect your VTU website, native mobile app, or WhatsApp bot to WistonPlug's resilient API in under 15 minutes. Battle-tested by 500+ Nigerian fintech portals.

  • Sub-Second Execution

    Average transaction completion time across all telco networks is 0.22s.

  • Instant Webhook Callbacks

    Get real-time JSON webhooks with cryptographic HMAC signatures for every top-up.

  • Automated Ledger Balance Reconciliation

    Real-time query endpoints for instant wallet balance checks and transaction status.

Generate API Keys Test in Sandbox
curl -X POST "https://api.wistonplug.com/v1/data/dispatch" \
  -H "Authorization: Bearer wp_live_99d14ca249b6" \
  -H "Content-Type: application/json" \
  -d '{
    "network": "MTN",
    "plan_code": "1000",
    "phone": "08038912345",
    "ported_number": true,
    "ref": "WP-ORDER-48921"
  }'

// Response: 200 OK (0.21s)
{
  "status": "success",
  "msg": "Data Dispatched Successfully",
  "trans_id": "WP-TX-8823194",
  "balance_before": 145500,
  "balance_after": 145275
}
<?php
// WistonPlug PHP Quick Dispatch
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.wistonplug.com/v1/data/dispatch",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_POST => true,
  CURLOPT_POSTFIELDS => json_encode([
    "network" => "MTN",
    "plan_code" => "1000",
    "phone" => "08038912345",
    "ref" => "WP-PHP-" . time()
  ]),
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer wp_live_99d14ca249b6",
    "Content-Type: application/json"
  ],
]);

$response = curl_exec($curl);
$result = json_decode($response, true);
echo $result['msg'];
?>
// WistonPlug Node.js SDK
const axios = require('axios');

async function dispatchTopup() {
  const res = await axios.post(
    'https://api.wistonplug.com/v1/data/dispatch',
    {
      network: 'MTN',
      plan_code: '1000',
      phone: '08038912345',
      ref: `NODE-${Date.now()}`
    },
    {
      headers: {
        Authorization: 'Bearer wp_live_99d14ca249b6'
      }
    }
  );
  console.log(res.data);
}

dispatchTopup();
# WistonPlug Python Integration
import requests, time

payload = {
    "network": "MTN",
    "plan_code": "1000",
    "phone": "08038912345",
    "ref": f"PY-WP-{int(time.time())}"
}

headers = {
    "Authorization": "Bearer wp_live_99d14ca249b6",
    "Content-Type": "application/json"
}

r = requests.post(
    "https://api.wistonplug.com/v1/data/dispatch",
    json=payload,
    headers=headers
)
print(r.json())

Transparent Wholesale Rate Card

No hidden charges, zero transaction fees. What you see is what you pay. Discounts apply automatically based on your monthly tier.

Service / Package Network / Provider Validity Wholesale Rate Status Action
1.0 GB SME Data 🟡 MTN Nigeria 30 Days ₦225 ⚡ Instant (0.2s) Buy Now
2.5 GB SME Data 🟡 MTN Nigeria 30 Days ₦560 ⚡ Instant (0.2s) Buy Now
5.0 GB SME Data 🟡 MTN Nigeria 30 Days ₦1,120 ⚡ Instant (0.2s) Buy Now
1.0 GB Corporate Gifting 🔴 Airtel Nigeria 30 Days ₦230 ⚡ Instant (0.2s) Buy Now
5.0 GB Corporate Gifting 🔴 Airtel Nigeria 30 Days ₦1,150 ⚡ Instant (0.2s) Buy Now
1.0 GB Corporate Data 🟢 Glo Mobile 30 Days ₦220 ⚡ Instant (0.2s) Buy Now
DStv Confam Bouquet 📺 Multichoice DStv 30 Days ₦11,000 ⚡ Unblocked Renew
GOtv Jinja Bouquet 📺 Multichoice GOtv 30 Days ₦3,300 ⚡ Unblocked Renew
WAEC Result Checker Pin 🎓 WAEC National 5 Checks ₦3,400 ⚡ In Vault Dispense
NECO e-Result Token 🎓 NECO Portal 5 Checks ₦1,200 ⚡ In Vault Dispense

Loved by Over 78,000 Nigerian Resellers

Here is what telecom entrepreneurs and developers say about switching to WistonPlug.

★★★★★

"WistonPlug is literally the backbone of my VTU business. I process over ₦400k in MTN data daily on my portal. Before WistonPlug, my previous API provider would fail during evening peaks. With WistonPlug, delivery is consistent at 0.2 seconds."

AO
Ahmed Oladipupo

CEO, DataSwift Telecommunications (Ikeja, Lagos)

★★★★★

"The automated refund feature saved my reputation. If an MTN network downtime ever causes an order to timeout, WistonPlug refunds the wallet balance immediately. My customers never complain about missing funds."

CE
Chidinma Eze

Founder, TopUpNaija Hub (Enugu)

★★★★★

"Their developer documentation is the cleanest I have used in Nigeria. Integrated their JSON endpoints into our Laravel app in less than 30 minutes. Customer support on WhatsApp is genuinely 24/7."

MB
Mustapha Bello

Lead Backend Engineer, PayPlug Tech (Abuja)

Frequently Asked Questions

Everything you need to know about getting started, wallet funding, and wholesale commissions.

Our server cluster connects directly to telecom server nodes via dedicated optical fiber pipelines. Top-up requests across MTN, Airtel, Glo, and 9mobile are delivered within 0.22 seconds with real-time SMS delivery confirmation.

Upon registration, you are immediately assigned personal dedicated virtual bank accounts (Wema Bank, Moniepoint, and Sterling Bank). Any transfer made to your assigned account number credits your WistonPlug wallet automatically within 2 seconds.

WistonPlug has an automated failover engine. If an operator's server times out or errors, your wallet is credited back 100% instantly with a detailed transaction failure code. Our system also automatically routes ported numbers to their active network.

Yes! We provide robust RESTful JSON APIs for VTU, Cable TV, Electricity, and Exam Pins. You can generate production API keys directly from your dashboard and use our PHP, Node.js, and Python code snippets for seamless integration.

Zero! Creating an account on WistonPlug is completely free. There are no monthly maintenance charges, no portal renewal fees, and no hidden deductions on wallet deposits.

We provide 24/7 dedicated support via WhatsApp, live dashboard chat, and email tickets. Our average response time is under 3 minutes.

Ready to Plug into Wholesale Telecom Profits?

Join over 78,000 smart Nigerian resellers and developers. Create your free account now and start dispensing data, airtime, and utility tokens with zero delays.

Create Free Account → Try Live Simulator