POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getblockbalance
wallet/getblockbalance
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getblockbalance \
  --header 'Content-Type: application/json' \
  --data '{
  "hash": "<string>",
  "number": 66677878,
  "visible": true
}'
{
  "timestamp": 123,
  "block_identifier": {
    "hash": "<string>",
    "number": 123
  },
  "balance_changes": [
    {}
  ]
}
TRON API method that retrieves the balance changes within a specific block, showing how account balances were modified by transactions.
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

  • hash — the block hash to retrieve balance changes for
  • number — alternative: the block number to retrieve balance changes for
  • visible — optional boolean parameter. When set to true, addresses are in base58 format. Default is false.

Response

  • timestamp — block timestamp
  • block_identifier — block identification information
  • balance_changes — array of balance change objects showing how each transaction affected account balances

Use case

The wallet/getblockbalance method is used for:
  • Analyzing balance changes within specific blocks
  • Building detailed financial transaction tracking systems
  • Auditing account balance modifications
  • Creating balance history and reconciliation tools
  • Monitoring large value transfers within blocks

Body

application/json

Response

200 - application/json

Block balance changes information

The response is of type object.