GET
api
/
token
/
{symbol}
/
balance
Fetch Wallet Balance
curl --request GET \
  --url https://ge-exchange-staging-1.herokuapp.com/v1/api/token/{symbol}/balance
{
  "status": "success",
  "message": "Wallet balance gotten successfully",
  "data": {
    "balance": 199096,
    "cash_balance": 0,
  }
}
symbol
string
required
The symbol must be one of GUSD, GKES, GNGN, corresponding to currency of the wallet you want to retrieve the balance for.
{
  "status": "success",
  "message": "Wallet balance gotten successfully",
  "data": {
    "balance": 199096,
    "cash_balance": 0,
  }
}