Data API Documentation for Msorg website users

This is used to purchase data for all networks and data types.

"Status" in API responses: successful, failed or processing

API Token: You are to pass your API token into the header 'Authorization' key for every request sent to our server. The value should be in the format "Token your-token" (where your-token is your API token).

Parameters:

Parameter Description
network It can be either '1' for MTN, '2' for Glo, '3' for 9mobile or '4' for Airtel
plan This is the plan ID. Check BELOW for the full plan codes.
mobile_number Beneficiary phone number

Sample Request Code (PHP)

                
                
        <?php

            $postRequest = array(
                'network' => $networkId,
                'mobile_number' => $phone,
                'plan' => $plan, 
        
            $xpostRequest=json_encode($postRequest);
            
            $url= 'https://cash2bill.com/api/data/';
            $cURLConnection = curl_init($url);
            curl_setopt($cURLConnection, CURLOPT_POSTFIELDS, $xpostRequest);
            curl_setopt($cURLConnection, CURLOPT_RETURNTRANSFER, true);
        
            curl_setopt($cURLConnection, CURLOPT_HTTPHEADER, array(        
                "Content-Type: application/json",
                "Accept: application/json",
                "Authorization: Token ".$your-token
                ));
                
            $data = curl_exec($cURLConnection);
            curl_close($cURLConnection);
        
            $xdata= json_decode($data, true);
            echo $data;
            exit;

        ?>

                
            

Sample Responses Format (JSON)

                
    

    {
        "Status":"successful",
        "ident":"202503280837823726ae834d34d",
        "network":"1",
        "balance_before":"5532.00",
        "plan_type":"SME",
        "balance_after":"5270.00",
        "mobile_number":"07033333333",
        "plan":"7",
        "api_response":"Dear Customer, You have successfully shared 1GB Data to 2347033333333. Thankyou.",
        "plan_network":"MTN",
        "plan_name":"1GB",
        "plan_amount":"262.00",
        "create_date":"2025-03-28 08:37:14"
    }

    OR
    

    {
        "error":"You can't purchase this plan due to insufficient balance  N109.00." Kindly Fund your Wallet"
    }


    OR

    {
        "detail":"Authentication credentials were not provided"
    }


    OR


    {
        "mobile_number":"This field is required"
    }


    OR

    {
        "plan":"This field is required"
    }

                
            

Plans

S/N Plan Name Plan Id
1MTN SME 500MB1
2MTN SME 1GB2
3MTN SME 2GB3
4MTN SME 3GB4
5MTN SME 5GB5
6MTN SME 10GB6
7MTN SME2 500MB7
8MTN SME2 1GB8
9MTN SME2 2GB9
10MTN SME2 3GB10
11MTN SME2 5GB11
12MTN SME2 10GB12
13MTN DATASHARE 500MB13
14MTN DATASHARE 1GB14
15MTN DATASHARE 2GB15
16MTN DATASHARE 3GB16
17MTN DATASHARE 5GB17
18MTN CG 500MB18
19MTN CG 1GB19
20MTN CG 2GB20
21MTN CG 3GB21
22MTN CG 5GB22
23MTN CG 10GB23
24MTN CG 15GB24
25MTN CG 20GB25
26AIRTEL CG 500MB26
27AIRTEL CG 1GB27
28AIRTEL CG 2GB28
29AIRTEL CG 5GB29
30AIRTEL CG 10GB30
31AIRTEL CG 15GB31
32AIRTEL CG 20GB32
33GLO CG 500MB33
34GLO CG 1GB34
35GLO CG 2GB35
36GLO CG 3GB36
37GLO CG 5GB37
38GLO CG 10GB38
399MOBILE CG 500MB39
409MOBILE CG 1GB40
419MOBILE CG 2GB41
429MOBILE CG 3GB42
439MOBILE CG 5GB43
449MOBILE CG 10GB44
459MOBILE CG 15GB45
469MOBILE CG 20GB46