curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/wallet
{
"wallet": true,
"balance": "<string>",
"account_state": "<string>",
"wallet_type": "<string>",
"seqno": 123,
"last_transaction_lt": "<string>",
"last_transaction_hash": "<string>"
}
Retrieves information about a specific wallet on the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/wallet
{
"wallet": true,
"balance": "<string>",
"account_state": "<string>",
"wallet_type": "<string>",
"seqno": 123,
"last_transaction_lt": "<string>",
"last_transaction_hash": "<string>"
}
wallet
endpoint retrieves detailed information about a specific wallet on the TON blockchain. This endpoint allows you to fetch the current state, balance, and other relevant details of a wallet.
address
(string, required) — The address of the wallet to retrieve information for.wallet
(boolean) — Indicates if the address is a wallet.balance
(string) — The balance of the wallet in nanotons.account_state
(string) — The state of the account (e.g., active, uninitialized).wallet_type
(string) — The type of the wallet contract.seqno
(integer) — The current sequence number of the wallet.last_transaction_lt
(string) — The logical time of the last transaction.last_transaction_hash
(string) — The hash of the last transaction.wallet
endpoint is useful for various applications that need to retrieve or verify wallet information on the TON blockchain:
The address of the wallet to retrieve information for
Successful response
The response is of type object
.
Was this page helpful?