curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/account
{
"address": "<string>",
"balance": "<string>",
"last_activity": 123,
"status": "<string>",
"code_hash": "<string>",
"data_hash": "<string>"
}
Retrieves information about a specific account on the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/account
{
"address": "<string>",
"balance": "<string>",
"last_activity": 123,
"status": "<string>",
"code_hash": "<string>",
"data_hash": "<string>"
}
account
endpoint retrieves detailed information about a specific account on the TON blockchain. This endpoint allows you to fetch the current state, balance, and other relevant details of an account.
address
(string, required) — The address of the account to retrieve information for.address
(string) — The account address.balance
(string) — The account balance in nanotons.last_activity
(integer) — The timestamp of the last account activity.status
(string) — The status of the account (e.g., active, frozen).code_hash
(string) — The hash of the account’s code.data_hash
(string) — The hash of the account’s data.account
endpoint is useful for various applications that need to retrieve or verify account information on the TON blockchain:
The address of the account to retrieve information for
Successful response
The response is of type object
.
Was this page helpful?