POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getdelegatedresource
wallet/getdelegatedresource
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresource \
  --header 'Content-Type: application/json' \
  --data '{
  "fromAddress": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
  "toAddress": "TFgY1uN8buRxAtV2r6Zy5sG3ACko6pJT1y",
  "visible": true
}'
{
  "delegatedResource": [
    {
      "from": "<string>",
      "to": "<string>",
      "frozen_balance_for_bandwidth": 123,
      "frozen_balance_for_energy": 123,
      "expire_time_for_bandwidth": 123,
      "expire_time_for_energy": 123
    }
  ]
}
TRON API method that retrieves information about delegated resources (bandwidth and energy) between accounts on the TRON blockchain.
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

  • fromAddress — the address that delegated resources to another account
  • toAddress — the address that received the delegated resources
  • visible — optional boolean parameter. When set to true, addresses are in base58 format. Default is false.

Response

  • delegatedResource — array of delegated resource information containing:
    • from — the delegator address
    • to — the recipient address
    • frozen_balance_for_bandwidth — amount of TRX frozen for bandwidth delegation
    • frozen_balance_for_energy — amount of TRX frozen for energy delegation
    • expire_time_for_bandwidth — expiration timestamp for bandwidth delegation
    • expire_time_for_energy — expiration timestamp for energy delegation

Use case

The wallet/getdelegatedresource method is used for:
  • Checking delegated bandwidth and energy between specific accounts
  • Monitoring resource delegation relationships
  • Verifying delegation amounts and expiration times
  • Building resource management dashboards and tools
  • Analyzing resource sharing patterns in applications

Body

application/json

Response

200 - application/json

Delegated resource information

The response is of type object.