> ## Documentation Index
> Fetch the complete documentation index at: https://getequity.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch Wallet Balance

> This endpoint retrieves your balance information for a specific token via its symbol.

<ParamField path="symbol" type="string" required>
  The symbol must be one of `GUSD`, `GKES`, `GNGN`, corresponding to currency of the wallet you want to retrieve the balance for.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "status": "success",
    "message": "Wallet balance gotten successfully",
    "data": {
      "balance": 199096,
      "cash_balance": 0,
    }
  }
  ```
</ResponseExample>
