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

> TRON API method that retrieves a paginated list of all TRC10 tokens issued on the TRON network. wallet/getpaginatedassetissuelist on TRON via Chainstack.

TRON API method that retrieves a paginated list of all TRC10 tokens issued on the TRON network. This method provides efficient pagination support for browsing through large numbers of tokens without overwhelming the response.

## Parameters

* `offset` — number of records to skip from the beginning (starting point for pagination)
* `limit` — maximum number of TRC10 tokens to return in the response

## 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 per account
  * `public_free_asset_net_limit` — total public free bandwidth limit
  * `frozen_supply` — array of frozen token supply information

## Use case

The `wallet/getpaginatedassetissuelist` method is used for:

* Building comprehensive TRC10 token listings and directories.
* Implementing paginated token browsers for better user experience.
* Creating analytics dashboards that analyze token distribution patterns.
* Developing token discovery platforms with efficient data loading.
* Building portfolio trackers that need to browse available tokens.
* Creating market data aggregators for TRC10 token ecosystems.


## OpenAPI

````yaml openapi/tron_node_api/getpaginatedassetissuelist.json post /95e61622bf6a8af293978377718e3b77/wallet/getpaginatedassetissuelist
openapi: 3.0.0
info:
  title: wallet/getpaginatedassetissuelist TRON API
  version: 1.0.0
  description: Get paginated list of all TRC10 tokens
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getpaginatedassetissuelist:
    post:
      tags:
        - Assets and Tokens
      summary: wallet/getpaginatedassetissuelist
      operationId: getPaginatedAssetIssueList
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                offset:
                  type: number
                  description: Number of records to skip from the beginning
                limit:
                  type: number
                  description: Maximum number of tokens to return
              required:
                - offset
                - limit
              example:
                offset: 0
                limit: 20
      responses:
        '200':
          description: Paginated list of TRC10 tokens
          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 per account
                        public_free_asset_net_limit:
                          type: number
                          description: Total public free bandwidth limit
                        frozen_supply:
                          type: array
                          description: Frozen token supply details

````