Skip to main content
GET
api
/
token
/
{symbol}
/
balance
Fetch Wallet Balance
curl --request GET \
  --url https://ge-exchange-staging-1.herokuapp.com/v1/api/token/{symbol}/balance \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Wallet balance gotten successfully",
  "data": {
    "balance": 199096,
    "cash_balance": 0,
  }
}

Documentation Index

Fetch the complete documentation index at: https://getequity-9353cd69.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

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,
  }
}