Skip to main content
GET
/
api
/
bill-payment
/
get-biller-list
Get Available Billers
curl --request GET \
  --url https://test.digitaltermination.com/api/bill-payment/get-biller-list \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "data": [
    {
      "id": "1234",
      "name": "MTN Airtime",
      "alias": "MTN",
      "category": "Airtime",
      "countries": "GH",
      "logo_url": "https://test.digitaltermination.com/images/logos/billers/gotvmax.png"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

A list of billers successfully retrieved.

status
integer
Example:

200

data
object[]