Skip to Content
APIDeep AnalysisGet Holder Token Change Balance

Get Holder Token Change Balance

1. Overview & Typical Use

Returns the daily balance change and cumulative balance for a specific address and token up to a given end date.

  • Typical use: draw a balance change trend chart for an address’s holdings.
  • When not to use: for summary holding metrics use “Get Holder Token Basic Info”; for USD value trends use “Get Holder Token Value Info”.

2. Endpoint & Authentication

GET /api/account/holderToken/asset/changeBalance

For Base URL and authentication, see Common Network & Authentication.

3. Request

ParameterTypeRequiredDefaultDescription
accountAddressstringYesHolder address (Base58 format, starts with T)
tokenAddressstringYesTRC20 contract address; TRC10 token ID; or 0 for TRX
endTimeintegerNoCurrent timeQuery up to this time (milliseconds)

4. Response

Top-level

FieldTypeRequiredDescriptionUnit/Precision
dataarrayRequiredDaily balance change list
tokenDecimalintegerRequiredToken decimal precision

data[] element

FieldTypeRequiredDescriptionUnit/Precision
datestringRequiredDate (format: YYYY-MM-DD)
statisticsobjectRequiredBalance metrics for this date

data[].statistics object

FieldTypeRequiredDescriptionUnit/Precision
datestringRequiredDate
changestringRequiredNet change on this date (minimum unit)minimum unit (divide by 10^tokenDecimal)
balancestringRequiredCumulative balance at end of day (minimum unit)minimum unit (divide by 10^tokenDecimal)
typeintegerRequiredDirection: 1 = inflow, 2 = outflow

5. Errors

For HTTP status codes, see Common Errors. Key points for this endpoint:

  • General error handling rules apply; no special error scenarios.
Last updated on: