curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/jetton/masters{
"masters": [
{
"address": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"totalSupply": "<string>",
"mintable": true,
"admin": "<string>",
"metadata": {},
"contentUri": "<string>"
}
]
}Retrieves a list of Jetton master contracts from the TON blockchain
curl --request GET \
--url https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v3/jetton/masters{
"masters": [
{
"address": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 123,
"totalSupply": "<string>",
"mintable": true,
"admin": "<string>",
"metadata": {},
"contentUri": "<string>"
}
]
}jetton/masters endpoint retrieves a list of Jetton master contracts from the TON blockchain. Jettons are the TON equivalent of fungible tokens (similar to ERC-20 tokens on Ethereum). This endpoint allows you to fetch information about various Jetton types and provides options for pagination.
limit (integer, optional) — The maximum number of Jetton masters to return. Default: 128.offset (integer, optional) — The number of Jetton masters to skip before starting to return results. Default: 0.masters (array) — An array of Jetton master objects, each containing:
address (string) — The address of the Jetton master contract.name (string) — The name of the Jetton.symbol (string) — The symbol of the Jetton.decimals (integer) — The number of decimal places for the Jetton.totalSupply (string) — The total supply of the Jetton.mintable (boolean) — Whether new tokens can be minted.admin (string) — The address of the Jetton admin.metadata (object) — Additional metadata of the Jetton.contentUri (string) — The URI of the Jetton’s content.jetton/masters endpoint is useful for various applications that need to interact with or display information about Jettons on the TON blockchain:
The maximum number of Jetton masters to return
The number of Jetton masters to skip before starting to return results
Successful response
Show child attributes
The address of the Jetton master contract
The name of the Jetton
The symbol of the Jetton
The number of decimal places for the Jetton
The total supply of the Jetton
Whether new tokens can be minted
The address of the Jetton admin
Additional metadata of the Jetton
The URI of the Jetton's content
Was this page helpful?