Developer Documentation
BILL PAYMENT

SME Data Purchasing

Purchase highly subsidized SME data bundles designed for small businesses and resellers, primarily on the MTN network.

POST /api/v1/sme-data
Authentication & Headers
HEADER VALUE REQUIRED
Authorization Bearer YOUR_API_TOKEN Yes
Content-Type application/json Yes
Availability Note

SME Data is primarily provided for the MTN network. Availability for other networks is intermittent. Always verify available plans via the Pricing List.

Request Parameters

PARAMETER TYPE DESCRIPTION REQUIRED
network string Network provider (e.g., MTN). Required
phone string The 11-digit recipient phone number. Required
plan_id integer The unique SME data plan ID. Required
reference string A unique transaction reference for your system. Required
JSON Payload
JSON
{
    "network": "MTN",
    "phone": "08123456789",
    "plan_id": 102,
    "reference": "SMED_999888"
}
Success Response
{
    "status": true,
    "message": "SME Data dispensed successfully",
    "data": {
        "transaction_id": "ASI-SME-0001",
        "phone": "08123456789",
        "plan": "MTN SME 1GB 30Days",
        "amount": 250,
        "token": "..."
    }
}