curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/getAddressBalance
{
"balance": "<string>"
}
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/getAddressBalance
{
"balance": "<string>"
}
getAddressBalance
method retrieves the balance of a specific address on the TON blockchain. This method provides a straightforward way to check the current balance of any TON address.
curl -X POST \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/jsonRPC' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "getAddressBalance",
"params": {
"address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2"
}
}'
address
(string, required) — The address for which to retrieve the balance. Example: EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2
.balance
(string) — The balance of the address in nanotons. 1 TON = 1,000,000,000 nanotons.getAddressBalance
method in TON is for wallet applications, blockchain explorers, or any DApp that needs to display or work with account balances. This method can be used to:
The address to get the balance for
The balance of the specified address
The response is of type object
.
Was this page helpful?