jetton/wallets - Ton

jetton/wallets. Provides details on Jetton wallets

jetton/masters - ton [Value: 100CU]
Provides details on Jetton wallets.
Use cases

Use cases

  • Retrieve data on Jetton wallets
  • Analyze Jetton wallet details
  • Audit Jetton wallet balances
Constraints

Constraints

  • Requires valid wallet ID
  • Supports Jetton Wallets V3 only
  • Depends on 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/jetton/wallets?limit=128&offset=0' \
     --header 'accept: application/json'
Copy
Response
200
{
    "ok": true,
    "result": [
        {
            "wallet_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
            "owner": "EQD1Lp1KcmGHFpE8eIvL1mnHT83b4HdB8HJxuSfq6Rq4zGyN",
            "balance": "5000000",
            "jetton_master_id": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
            "jetton_name": "TON Stablecoin",
            "jetton_symbol": "TONUSD",
            "decimals": 6,
            "created_at": 1693527600
        },
        {
            "wallet_id": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
            "owner": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2",
            "balance": "2000000000",
            "jetton_master_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
            "jetton_name": "TON Energy Token",
            "jetton_symbol": "TONE",
            "decimals": 18,
            "created_at": 1693527500
        }
    ]
}
Copy

Request params

Parametersobject
object
limitinteger
Optional. The maximum number of NFT collections to return. Default is 128.
offsetinteger
Optional. The number of NFT collections to skip before starting to return results. Default is 0.

Response

200

Response params

object
okboolean
Indicates if the request was successful.
resultarray
List of jetton wallet details.
object
wallet_idstring
Unique identifier of the jetton wallet.
ownerstring
Address of the wallet owner.
balancestring
Current balance of the jetton wallet in the smallest units.
jetton_master_idstring
Identifier of the jetton master associated with this wallet.
jetton_namestring
Name of the jetton token associated with this wallet.
jetton_symbolstring
Symbol representing the jetton token.
decimalsinteger
Number of decimal places used by the jetton token.
created_atinteger
Unix timestamp when the jetton wallet was created.