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

> TRON API method that retrieves detailed information about a TRC10 token using its unique asset ID. Available on TRON via Chainstack.

TRON API method that retrieves detailed information about a TRC10 token using its unique asset ID. TRC10 tokens are native TRON assets that can be issued directly on the blockchain without requiring smart contracts.

## Parameters

* `value` — the TRC10 token ID to query (string format)

## Response

* `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/getassetissuebyid` method is used for:

* Retrieving comprehensive information about TRC10 tokens for display in wallets and exchanges.
* Analyzing token economics including supply, exchange rates, and ICO details.
* Building token explorers and analytical tools for the TRON ecosystem.
* Verifying token authenticity and project information before trading or investing.
* Understanding bandwidth allocation and usage patterns for specific tokens.
* Implementing token management features in decentralized applications.


## OpenAPI

````yaml openapi/tron_node_api/getassetissuebyid.json post /95e61622bf6a8af293978377718e3b77/wallet/getassetissuebyid
openapi: 3.0.0
info:
  title: wallet/getassetissuebyid TRON API
  version: 1.0.0
  description: Get TRC10 token information by asset ID
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getassetissuebyid:
    post:
      tags:
        - Assets and Tokens
      summary: wallet/getassetissuebyid
      operationId: getAssetIssueById
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                value:
                  type: string
                  description: TRC10 token ID to query
              required:
                - value
              example:
                value: '1000001'
      responses:
        '200':
          description: TRC10 token information
          content:
            application/json:
              schema:
                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

````