Description

This endpoint retrieves the wallet balances of your business account. The wallet balances include details such as the currency and balance.

Request

GET /wallet

Headers

api-key: your_secret_key_here

Response

{
  "status": true,
  "message": "success",
  "data": {
    "wallets": [
        {
            "currency": "USD", // string
            "balance": 12550, // int
        }
        ...

    ]
  }
}