Skip to main content
GET
/
v1
/
mobileMoneyOperator
Get Mobile Networks
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://sandboxapi.me-cash.com/v1/mobileMoneyOperator', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "message": "recipient mobile networks fetched successfully",
  "status": "success",
  "data": [
    {
      "name": "TNM Mpamba",
      "country": "MW",
      "code": "TNM Mpamba"
    },
    {
      "name": "Airtel Money",
      "country": "MW",
      "code": "Airtel Money"
    }
  ]
}
This Endpoint is optional for Kenyan Mobile Money Collections.

Authorizations

x-api-key
string
header
required

Query Parameters

country
string
required

The country code to fetch the networks available (e.g., MW, RW, KE)

Example:

"MW"

currency
string
required

Currency code (e.g., MWK, RWF, KES)

Example:

"MWK"

Response

200 - application/json

Mobile money providers fetched successfully.

The response is of type any.