Skip to main content

Get your balances

The balance API provides the possibility of getting your balance in all countries by Mobile Money operator. It can be used directly to control when to make payments.

How to get your balances

To retrieve your balances from chipdeals, you will need to issue a GET request to the balance retrieval url. No additional information is required other than your apikey

Request Url

https://apis.chipdeals.me/momo/requestpayment?apikey=<YOUR_API_KEY>

GET https://apis.chipdeals.me/momo/balance?apikey=test_FOdigzgSopV8GZggZa89 HTTP/1.1
See the answer Answers

Answer

When you launch a balance recovery request, you get a response with the following specifics

{
"success": true,
"message": "",
"balances": [
{
"countryCode": "BJ",
"currency": "XOF",
"operator": "MTN",
"amount": 9000
},
{
"countryCode": "CI",
"currency": "XOF",
"operator": "MOOV",
"amount": 400
}
//...
]
}