curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getpaginatedassetissuelist \
--header 'Content-Type: application/json' \
--data '{
"offset": 0,
"limit": 20
}'
{
"assetIssue": [
{
"id": "<string>",
"owner_address": "<string>",
"name": "<string>",
"abbr": "<string>",
"total_supply": 123,
"trx_num": 123,
"precision": 123,
"num": 123,
"start_time": 123,
"end_time": 123,
"description": "<string>",
"url": "<string>",
"free_asset_net_limit": 123,
"public_free_asset_net_limit": 123,
"frozen_supply": [
"<any>"
]
}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getpaginatedassetissuelist \
--header 'Content-Type: application/json' \
--data '{
"offset": 0,
"limit": 20
}'
{
"assetIssue": [
{
"id": "<string>",
"owner_address": "<string>",
"name": "<string>",
"abbr": "<string>",
"total_supply": 123,
"trx_num": 123,
"precision": 123,
"num": 123,
"start_time": 123,
"end_time": 123,
"description": "<string>",
"url": "<string>",
"free_asset_net_limit": 123,
"public_free_asset_net_limit": 123,
"frozen_supply": [
"<any>"
]
}
]
}
offset
— number of records to skip from the beginning (starting point for pagination)limit
— maximum number of TRC10 tokens to return in the responseassetIssue
— array of TRC10 token information objects, each containing:
id
— unique token IDowner_address
— address of the token issuername
— token name in hex formatabbr
— token abbreviation in hex formattotal_supply
— total supply of the tokentrx_num
— TRX amount in exchange ratioprecision
— token decimal placesnum
— token amount in exchange ratiostart_time
— token sale start timestampend_time
— token sale end timestampdescription
— token description in hex formaturl
— token website URL in hex formatfree_asset_net_limit
— free bandwidth allocation per accountpublic_free_asset_net_limit
— total public free bandwidth limitfrozen_supply
— array of frozen token supply informationwallet/getpaginatedassetissuelist
method is used for:
Paginated list of TRC10 tokens
The response is of type object
.
Was this page helpful?