Skip to main content
GET
/
balance
Get Account Balance
curl --request GET \
  --url https://getmipay.com/api/v1/balance \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "balance": 150000,
    "currency": "XAF",
    "merchant_name": "My Awesome Business"
  }
}
GET /balance

Authorizations

Authorization
string
header
required

JWT bearer token returned by POST /action/auth. Send protected requests with: Authorization: Bearer . Tokens expire after 24 hours.

Response

Balance retrieved successfully

success
boolean
Example:

true

data
object