> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet/getassetissuelistbyname | TRON

> TRON API method that retrieves a list of TRC10 tokens that match a specified name pattern. wallet/getassetissuelistbyname on TRON via Chainstack.

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.

## Parameters

* `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`.

## 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.

## curl examples

Search by plain name (recommended):

```shell Shell theme={"system"}
curl --request POST \
  --url 'https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname' \
  --header 'Content-Type: application/json' \
  --data '{
    "value": "SEED",
    "visible": true
  }'
```

The response lists multiple `SEED` tokens; each entry includes an `id`. To fetch a specific token, use [`wallet/getassetissuebyid`](/reference/tron-getassetissuebyid) with that `id`.

Query with a hex‑encoded name:

```shell Shell theme={"system"}
curl --request POST \
  --url 'https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname' \
  --header 'Content-Type: application/json' \
  --data '{
    "value": "54525854657374436f696e",
    "visible": false
  }'
```

<Info>
  TRC10 names are not unique. Prefer this endpoint to discover candidates, then call [`wallet/getassetissuebyid`](/reference/tron-getassetissuebyid) to retrieve the exact token by `id`.
</Info>


## OpenAPI

````yaml openapi/tron_node_api/getassetissuelistbyname.json post /95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname
openapi: 3.0.0
info:
  title: wallet/getassetissuelistbyname TRON API
  version: 1.0.0
  description: Get list of TRC10 tokens by name pattern
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getassetissuelistbyname:
    post:
      tags:
        - Assets and Tokens
      summary: wallet/getassetissuelistbyname
      operationId: getAssetIssueListByName
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                value:
                  type: string
                  description: >-
                    Token name or pattern. When `visible` is true, provide plain
                    UTF‑8. When `visible` is false, provide hex‑encoded UTF‑8.
                visible:
                  type: boolean
                  description: When true, `value` is plain text; when false, hex‑encoded.
                  default: true
              required:
                - value
              example:
                value: SEED
                visible: true
      responses:
        '200':
          description: List of TRC10 tokens matching the name pattern
          content:
            application/json:
              schema:
                type: object
                properties:
                  assetIssue:
                    type: array
                    description: Array of TRC10 token information
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Unique token ID
                        owner_address:
                          type: string
                          description: Address of token issuer
                        name:
                          type: string
                          description: Token name in hex format
                        abbr:
                          type: string
                          description: Token abbreviation in hex format
                        total_supply:
                          type: number
                          description: Total supply of the token
                        trx_num:
                          type: number
                          description: TRX amount in exchange ratio
                        precision:
                          type: number
                          description: Token decimal places
                        num:
                          type: number
                          description: Token amount in exchange ratio
                        start_time:
                          type: number
                          description: Token sale start timestamp
                        end_time:
                          type: number
                          description: Token sale end timestamp
                        description:
                          type: string
                          description: Token description in hex format
                        url:
                          type: string
                          description: Token website URL in hex format
                        free_asset_net_limit:
                          type: number
                          description: Free bandwidth allocation
                        public_free_asset_net_limit:
                          type: number
                          description: Public free bandwidth limit
                        frozen_supply:
                          type: array
                          description: Frozen token supply details

````