Bundle from a provider

Get List of Data bundle Service providers grouped by data validity period

GET {{BASE_URL}}/api/biller/data/bundles/{provider}/grouped

This endpoint allows you to get the list of data bundles provided by a providers and their data code and returns a result grouped by data validity period

Path Parameters

Name
Type
Description

provider*

string

Headers

Name
Type
Description

x-api-key*

String

3434-4243-ffef-2323

{
  "isSuccessful": true,
  "message": "string",
  "code": "string",
  "data": [
        {
            "name": "Daily Data Plan",
            "group": [
                {
                    "name": "40MB for N50 valid for 1day. ",
                    "allowance": null,
                    "validity": "1 Day",
                    "price": 50,
                    "datacode": "A01_td"
                }
        },
        {
            "name": "Weekly Bundle",
            "group": [
                {
                    "name": "350MB for N350 valid for 7day. ",
                    "allowance": null,
                    "validity": "7 Days",
                    "price": 350,
                    "datacode": "A04_td"
                }
        }
  ]
}

Last updated