curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuebyname \
--header 'Content-Type: application/json' \
--data '{
"value": "TOKEN_NAME",
"visible": true
}'
{
"assetIssue": [
{
"owner_address": "<string>",
"name": "<string>",
"abbr": "<string>",
"total_supply": 123,
"trx_num": 123,
"num": 123,
"start_time": 123,
"end_time": 123,
"description": "<string>",
"url": "<string>",
"id": "<string>"
}
]
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuebyname \
--header 'Content-Type: application/json' \
--data '{
"value": "TOKEN_NAME",
"visible": true
}'
{
"assetIssue": [
{
"owner_address": "<string>",
"name": "<string>",
"abbr": "<string>",
"total_supply": 123,
"trx_num": 123,
"num": 123,
"start_time": 123,
"end_time": 123,
"description": "<string>",
"url": "<string>",
"id": "<string>"
}
]
}
value
— the name of the TRC10 token to retrieve information forvisible
— optional boolean parameter. When set to true
, addresses are in base58 format. Default is false
.assetIssue
— array of asset issue information containing:
owner_address
— token creator addressname
— token nameabbr
— token abbreviationtotal_supply
— total token supplytrx_num
— TRX amount for exchange ratenum
— token amount for exchange ratestart_time
— ICO start timeend_time
— ICO end timedescription
— token descriptionurl
— token website URLid
— token IDwallet/getassetissuebyname
method is used for:
TRC10 token information
The response is of type object
.
Was this page helpful?