Skip to main content
GET
/
api
/
v3
/
customer
/
support
/
networks
/
{countryCode}
Get available networks for a country
curl --request GET \
  --url https://sandbox-api.kotanipay.com/api/v3/customer/support/networks/{countryCode} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "message": "Networks retrieved successfully",
  "data": {
    "countryCode": "KE",
    "networks": [
      "MPESA",
      "AIRTEL"
    ],
    "isRequired": false
  }
}
Get all active mobile money networks available in a specific country, including network codes and phone number prefixes.

Authorizations

Authorization
string
header
required

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

Path Parameters

countryCode
string
required

Country code (e.g., KE, NG, GH)

Example:

"KE"

Response

success
boolean
Example:

true

message
string
Example:

"Networks retrieved successfully"

data
object