jetton/masters - Ton

jetton/masters. Retrieves information about Jetton master contracts.

jetton/masters - ton [Value: 100CU]
Retrieves information about Jetton master contracts.
Use cases

Use cases

  • Retrieve data on Jetton master contracts
  • Analyze Jetton master details
  • Audit Jetton master metadata
Constraints

Constraints

  • Requires valid master ID
  • Supports Jetton Masters V3 only
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/masters?limit=128&offset=0' \
     --header 'accept: application/json'
Copy
Response
200
{
    "ok": true,
    "result": [
        {
            "master_id": "0:abcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdefabcdef",
            "name": "TON Stablecoin",
            "symbol": "TONUSD",
            "decimals": 6,
            "total_supply": "1000000000000000",
            "admin_address": "EQD1Lp1KcmGHFpE8eIvL1mnHT83b4HdB8HJxuSfq6Rq4zGyN",
            "created_at": 1693527600,
            "metadata_uri": "https://tonstablecoin.example.com/metadata.json",
            "description": "A stablecoin pegged to USD on the TON blockchain."
        },
        {
            "master_id": "0:1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
            "name": "TON Energy Token",
            "symbol": "TONE",
            "decimals": 18,
            "total_supply": "5000000000000000000",
            "admin_address": "EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2",
            "created_at": 1693527500,
            "metadata_uri": "https://tonenergy.example.com/metadata.json",
            "description": "A token representing energy credits on the TON blockchain."
        }
    ]
}

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 master details.
object
master_idstring
Unique identifier of the jetton master contract.
namestring
Name of the jetton token.
symbolstring
Symbol representing the jetton token.
decimalsinteger
Number of decimal places used by the jetton token.
total_supplystring
Total supply of the jetton token in the smallest units.
admin_addressstring
Address of the administrator of the jetton master.
created_atinteger
Unix timestamp when the jetton master was created.
metadata_uristring
URI for accessing metadata associated with the jetton.
descriptionstring
Description of the jetton token.