POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getassetissuelistbyname
wallet/getassetissuelistbyname
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname \
  --header 'Content-Type: application/json' \
  --data '{
  "value": "62747474657374"
}'
{
  "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>"
      ]
    }
  ]
}
TRON API method that retrieves a list of TRC10 tokens that match a specified name pattern. This method allows searching for tokens by their names and is useful for discovering assets with similar or related names.
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 — hex-encoded name pattern to search for TRC10 tokens

Response

  • assetIssue — array of TRC10 token information objects, each containing:
    • id — unique token ID
    • owner_address — address of the token issuer
    • name — token name in hex format
    • abbr — token abbreviation in hex format
    • total_supply — total supply of the token
    • trx_num — TRX amount in exchange ratio
    • precision — token decimal places
    • num — token amount in exchange ratio
    • start_time — token sale start timestamp
    • end_time — token sale end timestamp
    • description — token description in hex format
    • url — token website URL in hex format
    • free_asset_net_limit — free bandwidth allocation
    • public_free_asset_net_limit — public free bandwidth limit
    • frozen_supply — frozen token supply details

Use case

The wallet/getassetissuelistbyname method is used for:
  • Searching for TRC10 tokens by name pattern or partial name matches.
  • Discovering tokens with similar names or themes in the ecosystem.
  • Building token discovery and search functionality in applications.
  • Validating token names before creating new assets to avoid conflicts.
  • Implementing auto-complete features for token selection interfaces.
  • Analyzing token naming patterns and trends in the TRON network.

Body

application/json

Response

200 - application/json

List of TRC10 tokens matching the name pattern

The response is of type object.