SageCloud
  • API Documentation
  • Getting Started
  • Authorization
    • Authentication
    • Headers
  • AIRTIME / EPIN
    • Purchase Airtime
    • Purchase EPIN
  • DATA
    • Fetch Data Providers
    • Fetch data bundles
    • Purchase Data
    • Spectranet Pin Lookup
    • Spectranet Pin Purchase
    • Smile Bundle Lookup
    • Smile Customer Validation
    • Smile Bundle Purchase
    • Corporate Data Lookup
    • Purchase Corporate Data
    • SME Data Lookup
    • Purchase SME Data.
  • CABLE-TV
    • Fetch Providers
    • Validate Smartcard
    • Fetch Billers For Provider
    • Purchase
    • Purchase TV Add-Ons
    • Fetch TV Add-Ons
  • ELECTRICITY
    • Fetch Billers
    • Validate Meter
    • Purchase
  • BETTING
    • Fetch Billers
    • Validate Betting
    • Fund Betting
  • FUNDS TRANSFER
    • Fetch Banks
    • Verify Bank Details
    • Transfer Funds
  • Re-query
  • Error Response
  • KYC
    • Verify BVN
    • Verify NIN
  • Education
    • WAEC Lookup
    • WAEC Purchase
    • JAMB Pin Purchase
    • JAMB Profile Validation
    • JAMB Lookup
Powered by GitBook
On this page

Was this helpful?

  1. DATA

Fetch data bundles

This endpoint allows you to fetch all data bundles

Fetch data bundles

GET https://sagecloud.ng/api/v2/internet/data/lookup

This endpoint allows you to fetch data bundles for a data provider

Query Parameters

Name
Type
Description

provider

string

The network provider

Headers

Name
Type
Description

Authentication

string

Check the Headers page.

{    
    "success": true,
    "data": {
        "status": 1,
        "error": false,
        "data": [
            {
                "type": "AIRTELDATA",
                "code": "002",
                "description": "40MB 1Day",
                "amount": "50",
                "price": "50",
                "value": "40MB",
                "duration": "1Day"
            },
            {
                "type": "AIRTELDATA",
                "code": "003",
                "description": "200MB 3Days",
                "amount": "200",
                "price": "200",
                "value": "200MB",
                "duration": "3Days"
            },
            {
                "type": "AIRTELDATA",
                "code": "004",
                "description": "350MB 7Days",
                "amount": "300",
                "price": "300",
                "value": "350MB",
                "duration": "7Days"
            },
            ...
        ],
        "date": "2020-11-23T14:45:40.606853Z",
        "message": "Data lookup successful"
}

PreviousFetch Data ProvidersNextPurchase Data

Last updated 4 years ago

Was this helpful?