POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getassetissuebyname
wallet/getassetissuebyname
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>"
    }
  ]
}
TRON API method that retrieves information about a TRC10 token by its name.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • value — the name of the TRC10 token to retrieve information for
  • visible — optional boolean parameter. When set to true, addresses are in base58 format. Default is false.

Response

  • assetIssue — array of asset issue information containing:
    • owner_address — token creator address
    • name — token name
    • abbr — token abbreviation
    • total_supply — total token supply
    • trx_num — TRX amount for exchange rate
    • num — token amount for exchange rate
    • start_time — ICO start time
    • end_time — ICO end time
    • description — token description
    • url — token website URL
    • id — token ID

Use case

The wallet/getassetissuebyname method is used for:
  • Retrieving detailed information about TRC10 tokens
  • Building token information displays in wallets and DApps
  • Verifying token authenticity and properties
  • Creating token discovery and analysis tools
  • Implementing token trading interfaces

Body

application/json

Response

200 - application/json

TRC10 token information

The response is of type object.