> ## 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/getassetissuelist | TRON

> TRON API method that retrieves a list of all TRC10 tokens that have been issued on the TRON network. No parameters required for this method.

TRON API method that retrieves a list of all TRC10 tokens that have been issued on the TRON network.

## Parameters

No parameters required for this method.

## Response

Returns an array of asset objects, each containing:

* `owner_address` — address of the account that issued the token
* `name` — full name of the token
* `abbr` — token symbol or abbreviation
* `total_supply` — total number of tokens issued
* `trx_num` — TRX amount used in the exchange rate calculation
* `precision` — number of decimal places supported by the token
* `num` — 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 project
* `url` — official website URL for the token project
* `id` — unique identifier for the token
* `free_asset_net_limit` — bandwidth provided by token issuer for token operations
* `public_free_asset_net_limit` — public bandwidth limit available for this token
* `public_free_asset_net_usage` — amount of public bandwidth currently used
* `public_latest_free_net_time` — timestamp of the latest free bandwidth usage

## Use case

The `wallet/getassetissuelist` method is used for:

* Building comprehensive token explorers and market overview dashboards
* Retrieving all available TRC10 tokens for wallet and exchange integrations
* Analyzing the complete TRC10 token ecosystem on TRON
* Creating token discovery interfaces for DeFi applications


## OpenAPI

````yaml openapi/tron_node_api/getassetissuelist.json post /95e61622bf6a8af293978377718e3b77/wallet/getassetissuelist
openapi: 3.0.0
info:
  title: wallet/getassetissuelist TRON API
  version: 1.0.0
  description: Get list of all issued TRC10 tokens
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getassetissuelist:
    post:
      tags:
        - Assets and Tokens
      summary: wallet/getassetissuelist
      operationId: getAssetIssueList
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              example: {}
      responses:
        '200':
          description: List of all TRC10 tokens
          content:
            application/json:
              schema:
                type: object
                properties:
                  assetIssue:
                    type: array
                    items:
                      type: object
                      properties:
                        owner_address:
                          type: string
                          description: Address that issued the token
                        name:
                          type: string
                          description: Token name
                        abbr:
                          type: string
                          description: Token symbol/abbreviation
                        total_supply:
                          type: number
                          description: Total supply of tokens
                        trx_num:
                          type: number
                          description: TRX amount for exchange rate
                        precision:
                          type: number
                          description: Token decimal places
                        num:
                          type: number
                          description: Token amount for exchange rate
                        start_time:
                          type: number
                          description: ICO start time (timestamp)
                        end_time:
                          type: number
                          description: ICO end time (timestamp)
                        description:
                          type: string
                          description: Token description
                        url:
                          type: string
                          description: Token project website
                        id:
                          type: string
                          description: Unique token ID
                        free_asset_net_limit:
                          type: number
                          description: Free bandwidth for token operations
                        public_free_asset_net_limit:
                          type: number
                          description: Public free bandwidth limit
                        public_free_asset_net_usage:
                          type: number
                          description: Used public bandwidth
                        public_latest_free_net_time:
                          type: number
                          description: Latest free bandwidth usage time

````