curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname \
--header 'Content-Type: application/json' \
--data '
{
"value": "SEED",
"visible": true
}
'{
"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": "<array>"
}
]
}curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname \
--header 'Content-Type: application/json' \
--data '
{
"value": "SEED",
"visible": true
}
'{
"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": "<array>"
}
]
}value — token name or pattern. Use plain text with visible: true, or hex‑encoded UTF‑8 with visible: false.visible — optional boolean. When true, value is plain text; when false, hex‑encoded. Default is true.assetIssue — 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 allocationpublic_free_asset_net_limit — public free bandwidth limitfrozen_supply — frozen token supply detailswallet/getassetissuelistbyname method is used for:
curl --request POST \
--url 'https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname' \
--header 'Content-Type: application/json' \
--data '{
"value": "SEED",
"visible": true
}'
SEED tokens; each entry includes an id. To fetch a specific token, use wallet/getassetissuebyid with that id.
Query with a hex‑encoded name:
curl --request POST \
--url 'https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname' \
--header 'Content-Type: application/json' \
--data '{
"value": "54525854657374436f696e",
"visible": false
}'
wallet/getassetissuebyid to retrieve the exact token by id.List of TRC10 tokens matching the name pattern
Array of TRC10 token information
Show child attributes
Unique token ID
Address of token issuer
Token name in hex format
Token abbreviation in hex format
Total supply of the token
TRX amount in exchange ratio
Token decimal places
Token amount in exchange ratio
Token sale start timestamp
Token sale end timestamp
Token description in hex format
Token website URL in hex format
Free bandwidth allocation
Public free bandwidth limit
Frozen token supply details
Was this page helpful?