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"
}
]
}Collection
Get Mobile Networks
Retrieves a list of supported mobile money networks for a specific country and currency.
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"
}
]
}Documentation Index
Fetch the complete documentation index at: https://developer.me-cash.com/llms.txt
Use this file to discover all available pages before exploring further.
This Endpoint is optional for Kenyan Mobile Money Collections.
Authorizations
Query Parameters
The country code to fetch the networks available (e.g., MW, RW, KE)
Example:
"MW"
Currency code (e.g., MWK, RWF, KES)
Example:
"MWK"
Response
200 - application/json
Mobile money providers fetched successfully.
The response is of type any.
Was this page helpful?
⌘I

