v1

latestOpenAPI 3.0.32026-07-1320201.0 MB
Tron Blockchain Queries

Get TRC10 balance

This method returns the balance of the specified address for the specified token

get/api/v2/tron/balances/{address}/trc10/{token_id}

Headers

X-Network'testnet' | 'mainnet'

Specify "testnet" for test network or leave empty for main network. Defaults to "mainnet" if not provided.

Authorizationstring required

Bearer token for authorization. Required for authenticated endpoints.

Content-Type'application/json' | 'application/x-www-form-urlencoded' | 'multipart/form-data'

The MIME type of the request body.

Response

statusinteger
okboolean
messagestring

Example response

{
  "status": 200,
  "ok": true,
  "message": "TRC10 balance fetched",
  "data": {
    "tronaddress": "TTbxaUNHATeKRX4vCpLayeUA4eWJDG2KYS",
    "decimals": 2,
    "balance": "17990",
    "tokenid": "1002357"
  }
}