Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
value— the name of the TRC10 token to retrieve information forvisible— optional boolean parameter. When set totrue, addresses are in base58 format. Default isfalse.
Response
assetIssue— array of asset issue information containing:owner_address— token creator addressname— token nameabbr— token abbreviationtotal_supply— total token supplytrx_num— TRX amount for exchange ratenum— token amount for exchange ratestart_time— ICO start timeend_time— ICO end timedescription— token descriptionurl— token website URLid— token ID
Use case
Thewallet/getassetissuebyname method is used for:
- Retrieving detailed information about TRC10 tokens
- Building token information displays in wallets and DApps
- Verifying token authenticity and properties
- Creating token discovery and analysis tools
- Implementing token trading interfaces
curl examples
Because TRC10 names are not unique on mainnet, callingwallet/getassetissuebyname with a plain name often returns a non‑unique error. A reliable flow is:
- search by name to see all matches
Shell
assetIssue array with multiple SEED tokens. Each item has an id field (for example, 1000001).
- fetch the exact token by id
Shell
jq to pick the first match and query by id:
Shell
- if you call
wallet/getassetissuebynamewith a non‑unique name (for example,SEED), the node can respond with:
- prefer
wallet/getassetissuelistbynameto discover candidates, thenwallet/getassetissuebyidto retrieve a specific token.
direct working example (hex name)
You can also query a known unique token by providing the name hex‑encoded withvisible: false. Example for TRXTestCoin (asset id 1000006):
Shell
Body
application/json
Response
200 - application/json
TRC10 token information