The getTokenAccountBalance JSON-RPC method retrieves the token balance of a specified SPL Token account.
The response includes the raw balance, the number of decimal places, and formatted balances. This method is particularly useful in dApps, wallets, and financial applications using the Solana Core API.
This method is available on the following API endpoints:
Mainnet
Devnet
string
(required): The Pubkey of the Token account to query, provided as a base-58 encoded string.
object
(optional): A configuration object containing:
commitment (string
, optional): Defines the level of finality for the request.
The response returns an RpcResponse object containing:
context
(object
): Contextual information about the slot.
slot
(u64
): The slot number when the balance was retrieved.
value
(object
):
amount
(string
): The raw balance without decimals (string representation of u64).
decimals
(u8
): The number of base 10 digits to the right of the decimal point.
uiAmount
(number
|null
): The balance with decimals applied. (Deprecated)
uiAmountString
(string
): The balance formatted as a string with decimals applied.
https://go.getblock.io/<ACCESS-TOKEN>/
curl --location "https://go.getblock.io/<ACCESS-TOKEN>/" -XPOST \
--header "Content-Type: application/json" \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "getTokenAccountBalance",
"params": [
"7fUAJdStEuGbc3sM84cKRL6yYaaSstyLSU4ve5oovLS7"
]
}'
A successful request returns the token balance of the specified account.
{
"jsonrpc": "2.0",
"result": {
"context": {
"slot": 1114
},
"value": {
"amount": "9864",
"decimals": 2,
"uiAmount": 98.64,
"uiAmountString": "98.64"
}
},
"id": 1
}
In this response:
The raw balance is 9864.
With 2 decimal places, the formatted balance is 98.64.
Common getTokenAccountBalance error scenarios:
Invalid Pubkey: If the provided Pubkey is incorrectly formatted.
Network errors: Connectivity issues with the Solana JSON-RPC API endpoints.
Non-existent token account: If the provided Pubkey does not correspond to a valid SPL Token account.
{
"jsonrpc": "2.0",
"error": {
"code": -32602,
"message": "Invalid Token Account Pubkey"
},
"id": 1
}
The Solana getTokenAccountBalance method is useful for:
Wallet applications: Displaying users' token balances;
Web3 analytics tools: Monitoring token balances across accounts;
DeFi applications: Calculating token holdings for smart contracts;
Blockchain explorers: Displaying account balances.
const axios = require('axios');
const url = "https://go.getblock.io/<ACCESS-TOKEN>/";
const headers = { "Content-Type": "application/json" };
const payload = {
jsonrpc: "2.0",
id: 1,
method: "getTokenAccountBalance",
params: [
"7fUAJdStEuGbc3sM84cKRL6yYaaSstyLSU4ve5oovLS7"
]
};
const fetchTokenAccountBalance = async () => {
try {
const response = await axios.post(url, payload, { headers });
if (response.status === 200 && response.data.result?.value) {
const balance = response.data.result.value;
console.log("Token Account Balance:");
console.log(` Amount: ${balance.amount}`);
console.log(` Decimals: ${balance.decimals}`);
console.log(` UI Amount: ${balance.uiAmount}`);
console.log(` UI Amount String: ${balance.uiAmountString}`);
} else {
console.error("Unexpected response:", response.data);
}
} catch (error) {
console.error("getTokenAccountBalance error:", error.response?.data || error.message);
}
};
fetchTokenAccountBalance();
By integrating Web3 getTokenAccountBalance into Solana’s Core API, developers can easily query token balances, track account activity, and analyze transaction flows. This JSON-RPC method is essential for applications requiring accurate and up-to-date token balance information.