Cydene Bills API
  • Cydene Agents API Documentation
  • Authentication
    • API Authentication requirements
  • INTEGRATION FLOW
    • Requests
    • Response
  • AIRTIME
    • Airtime recharge providers
    • Purchase Airtime
  • DATA BUNDLES SERVICES
    • Bundle recharge providers
    • Bundle from a provider
    • Purchase Data Bundle
  • SMILE
    • Get Smile Bundle Options
    • Validate Smile Account
    • Purchase Smile Data Bundle
  • SPECTRANET
    • Get Spectranet Data Bundle Options
    • Purchase Spectranet Data Bundle
  • Power
    • Electricity Service Providers
    • Validate
    • Purchase Power
  • Cable Tv
    • Validate
    • Bouquets
    • Addons
    • Renewal
    • Update
  • Betting
    • Get Betting Providers
    • Validate Account
    • Fund Account
  • DSTV SHOWMAX
    • Get plans
    • Subscribe to a showtime plan
  • GAS
    • Create Order
    • Get Available Dispatchers
    • Complete Order
    • Cancel Order
    • Order Status
    • Get Order
  • Transactions
    • GetStatus
    • Get Balance
  • CONTACT US
    • Contact us
  • SMS
    • Send SMS
    • Get Delivery Status
Powered by GitBook
On this page
  1. AIRTIME

Airtime recharge providers

API response object are always sent in JSON format and it contains at least a status and a message. The data field is optional depending on the request the user is trying to make.

GET list of service providers

GET {{ BASE_URL }}/api/biller/airtime/providers

This endpoint allows you to get the list of airtime recharge providers and their service type code.

Headers

Key
Type
Value

x-api-key*

String

3434-4243-ffef-2323

{
  "isSuccessful": true,
  "message": "string",
  "code": "string",
  "data": {
    "providers": [
      {
        "servieType": "string",
        "shortName": "string",
        "name": "string",
        "billerId": "string",
        "productId": "string",
        "plans": [
          "string"
        ]
      }
    ]
  }
}

PreviousResponseNextPurchase Airtime

Last updated 1 month ago