cURL
curl --request GET \ --url https://developersandbox-api.flutterwave.com/wallets/balances \ --header 'Authorization: Bearer <token>'
{ "status": "success", "message": "<string>", "data": [ { "currency": "NGN", "available_balance": 1200.09 }, { "currency": "USD", "available_balance": 3.29 } ] }
Fetch wallet balance for multiple currencies
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A unique identifier to track this operation. It must be between 12 and 255 characters in length.
12 - 255
OK
success
failed
Show child attributes
[ { "currency": "NGN", "available_balance": 1200.09 }, { "currency": "USD", "available_balance": 3.29 }]
Was this page helpful?