curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuebyid \
--header 'Content-Type: application/json' \
--data '{
"value": "1000001"
}'
{
"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>",
"id": "<string>",
"free_asset_net_limit": 123,
"public_free_asset_net_limit": 123,
"public_free_asset_net_usage": 123,
"public_latest_free_net_time": 123
}
curl --request POST \
--url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuebyid \
--header 'Content-Type: application/json' \
--data '{
"value": "1000001"
}'
{
"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>",
"id": "<string>",
"free_asset_net_limit": 123,
"public_free_asset_net_limit": 123,
"public_free_asset_net_usage": 123,
"public_latest_free_net_time": 123
}
value
— the TRC10 token ID to query (string format)owner_address
— address of the account that issued the tokenname
— full name of the tokenabbr
— token symbol or abbreviationtotal_supply
— total number of tokens issuedtrx_num
— TRX amount used in the exchange rate calculationprecision
— number of decimal places supported by the tokennum
— token amount used in the exchange rate calculation (tokens per TRX)start_time
— ICO start timestamp (when token sale began)end_time
— ICO end timestamp (when token sale ended)description
— detailed description of the token projecturl
— official website URL for the token projectid
— unique identifier for the tokenfree_asset_net_limit
— bandwidth provided by token issuer for token operationspublic_free_asset_net_limit
— public bandwidth limit available for this tokenpublic_free_asset_net_usage
— amount of public bandwidth currently usedpublic_latest_free_net_time
— timestamp of the latest free bandwidth usagewallet/getassetissuebyid
method is used for:
TRC10 token information
The response is of type object
.