curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/topAccountsByBalance{
"accounts": [
{
"address": "<string>",
"balance": "<string>",
"account_status": "<string>",
"last_activity": 123
}
],
"address_book": {}
}Get accounts with the highest TON balances
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/topAccountsByBalance{
"accounts": [
{
"address": "<string>",
"balance": "<string>",
"account_status": "<string>",
"last_activity": 123
}
],
"address_book": {}
}topAccountsByBalance endpoint retrieves accounts with the highest TON balances on the network. This provides a snapshot of the wealthiest addresses on the TON blockchain.
limit (integer, optional) — Maximum number of accounts to return. Default: 10.offset (integer, optional) — Number of accounts to skip for pagination. Default: 0.accounts (array) — Array of account objects sorted by balance descending:
address (string) — Account address.balance (string) — Balance in nanotons.account_status (string) — Account status (active, uninit, frozen).last_activity (integer) — Last activity timestamp.address_book (object) — Address book mapping with names for known addresses.
topAccountsByBalance endpoint is valuable for network analysis and research:
curl -X GET \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/topAccountsByBalance?limit=10' \
-H 'accept: application/json'
address_book in the response will include names for well-known addresses like exchanges and major contracts, making it easier to identify the top holders.Maximum number of accounts to return
Number of accounts to skip
Successful response
Was this page helpful?