getassetissuebyid - Tron

getassetissuebyid. Returns TRC10 token details by its numeric asset ID.

getassetissuebyid - tron [Value: 20CU]
Returns TRC10 token details by its numeric asset ID.
Use cases

Use cases

  • Also available as GET
  • Look up a TRC10 token's supply and issuer by its asset ID
Constraints

Constraints

  • Returns an empty object if no token with that ID exists
  • Also available under /walletsolidity/ for confirmed (solidified) data instead of the latest state
Get started
Unlock Access to 100+ chains
Boost your app's speed and reliability with dRPC - get your access API key

Language

Request
Examples
curl --request POST \
     --url https://lb.drpc.live/tron/{API-KEY}/wallet/getassetissuebyid \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{"value": "example"}'
Copy
Response
200
{
  "owner_address": "41088a2bfcb1c7271029fd69a66859d55560895884",
  "name": "54524e",
  "abbr": "544e",
  "total_supply": 100000000000000000,
  "frozen_supply": [
    { "frozen_amount": 1, "frozen_days": 1 }
  ],
  "trx_num": 1,
  "precision": 6,
  "num": 1,
  "start_time": 1737690890434,
  "end_time": 2053134849000,
  "vote_score": 1,
  "description": "7465737420747263313020636f696e20666f72206e696c65",
  "url": "68747470733a2f2f6e696c6565782e696f2f",
  "free_asset_net_limit": 10000,
  "public_free_asset_net_limit": 20000,
  "id": "1005416"
}
Copy

Request params

idinteger
jsonrpcstring
methodstring
Parametersobject
object
valuestring
[Required for GET] The TRC10 token's numeric asset ID

Response

200
Returns TRC10 token details by its numeric asset ID.

Response params

object
owner_addressstring
The address of the account issuing this TRC10 token.
namestring
The token's display name, UTF-8 encoded as a hex string.
abbrstring
The token's ticker/abbreviation, UTF-8 encoded as a hex string.
total_supplyinteger
The total number of units of this token that will ever be issued.
frozen_supplyarray_of_objects
The portion(s) of the total supply locked up by the issuer for a fixed duration before becoming transferable.
object
frozen_amountinteger
The number of token units locked in this frozen portion.
frozen_daysinteger
The number of days this portion remains locked before it can be released.
trx_numinteger
The denominator of the TRX-to-token exchange ratio: this many TRX buys `num` tokens during fundraising.
numinteger
The numerator of the TRX-to-token exchange ratio: `trx_num` TRX buys this many tokens during fundraising.
precisioninteger
The number of decimal places used to display this token's amounts.
start_timeinteger
Unix timestamp, in ms, at which the token's fundraising period begins.
end_timeinteger
Unix timestamp, in ms, at which the token's fundraising period ends.
descriptionstring
A free-text description of the token or project, UTF-8 encoded as a hex string.
urlstring
The project's website URL, UTF-8 encoded as a hex string, limited to 256 bytes.
free_asset_net_limitinteger
The free bandwidth quota granted per account for transactions involving this token.
public_free_asset_net_limitinteger
The shared free bandwidth quota available to all accounts collectively for transactions involving this token.
Permission_idinteger
The ID of the multi-sig permission group authorizing this operation, if the issuer account uses multi-sig.
visibleboolean
Whether addresses and text fields in the request/response are formatted as Base58/UTF-8 (true) or hex (false).