wallet - Ton

wallet. Retrieves detailed information about a specific wallet

wallet - ton [Value: 100CU]
Retrieves detailed information about a specific wallet.
Use cases

Use cases

  • Create or manage a TON Wallet V3
  • Generate keys for secure transactions
  • Store and transfer TON assets
Constraints

Constraints

  • Requires valid key pair
  • Supports Wallet V3 format only
  • Depends on network sync
Get started
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key

Language

Request
Examples
curl --request GET \
     --url  'https://ton.drpc.org/rest/api/v3/wallet?address=0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef' \
     --header 'accept: application/json'
Copy
Response
200
{
    "ok": true,
    "result": {
        "address": "0QAvTjjA5ZBbHN3a-SYnO1qvzlgNx09OC2bhYBPAbfs3S6q7",
        "balance": "1500000000",
        "status": "active",
        "account_type": "wallet",
        "last_transaction_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
        "last_transaction_lt": 47597573000002,
        "last_transaction_timestamp": 1693527600
    }
}
Copy

Request params

Parametersstring
string
addressstring
Identifier of the target TON account in any form.

Response

200

Response params

object
okboolean
Indicates if the request was successful.
resultobject
Details of the account.
object
addressstring
The account's address.
balancestring
Current balance of the account, in the smallest units.
statusstring
The current status of the account (e.g., active).
account_typestring
Type of the account (e.g., wallet).
last_transaction_idstring
Identifier of the last transaction associated with the account.
last_transaction_ltinteger
Logical time of the last transaction.
last_transaction_timestampinteger
Unix timestamp of the last transaction.