# 6.4 Check an account CCC balance
# Use cases
Get the account CCC balance.
# Tools
The Commercio SDK, our own open source tool to format transactions to Commercio.network
# Functions and APIs
- Network queryChain.
 
# Step by step sequence
- Execute the Network queryChain function to get the account balance.
 
# Code Examples
Here's an example of the implementation in all the available languages.
# Dart
final balanceURL =
  '${wallet.networkInfo.lcdUrl}/bank/balances/${wallet.bech32Address}';
final balance = await Network.queryChain(balanceURL);
 1
2
3
2
3
# Kotlin
val balanceURL = "$lcdUrl/bank/balances/${wallet.bech32Address}"
val balance = network.queryChain<Any>(balanceURL)
 1
2
2