Skip to main content
GET
/
wallets
/
balances
/
{currency}
Fetch a currency's wallet balance
curl --request GET \
  --url https://developersandbox-api.flutterwave.com/wallets/balances/{currency} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "<string>",
  "data": {
    "currency": "NGN",
    "available_balance": 1200.09
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Trace-Id
string

A unique identifier to track this operation. It must be between 12 and 255 characters in length.

Required string length: 12 - 255

Path Parameters

currency
string
required

The currency for the balance you want to fetch

Example:

"NGN"

Response

OK

status
enum<string>
Available options:
success,
failed
message
string
data
object
Example:
{
"currency": "NGN",
"available_balance": 1200.09
}