GET
/
channels
curl --request GET \
  --url https://api.notchpay.co/channels \
  --header 'Authorization: <api-key>'
{
  "code": 200,
  "status": "OK",
  "message": "Channels retrieved",
  "items": [
    {
      "id": "ch_123456789",
      "name": "MTN Mobile Money",
      "slug": "cm.mtn",
      "logo": "https://api.notchpay.co/assets/channels/mtn.png",
      "countries": [
        "CM"
      ],
      "currency": "XAF",
      "type": "mobile_money",
      "min_amount": 100,
      "max_amount": 500000
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

country
string

Country code to filter channels

Example:

"CM"

amount
number

Minimum amount to filter channels

Example:

500

currency
string
default:XAF

Currency code for minimum amount

Response

200
application/json
Channels retrieved

The response is of type object.