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

# Check Balance

Check a user balance by passing in the public key of the account you want to check.

The response object includes your total balance as well as detailing all of the Mints and Tokens held by that Public Key.

```kotlin theme={null}
val option = GetBalanceOption(
	token = Token.USDC.mint() // Optional null for SOL
)
 val balance = Altude.getBalance(option).getOrNull()?.balance
```
