POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getdelegatedresourceaccountindex
wallet/getdelegatedresourceaccountindex
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourceaccountindex \
  --header 'Content-Type: application/json' \
  --data '{
  "value": "TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g",
  "visible": true
}'
{
  "account": "<string>",
  "fromAccounts": [
    "<string>"
  ],
  "toAccounts": [
    "<string>"
  ]
}
TRON API method that retrieves the delegation index of an account, showing all accounts that have delegated resources to or received resources from the specified account.
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 account address to query for delegation relationships
  • visible — optional boolean parameter. When set to true, addresses are in base58 format. Default is false.

Response

  • account — the queried account address
  • fromAccounts — array of accounts that have delegated resources to this account
  • toAccounts — array of accounts that have received delegated resources from this account

Use case

The wallet/getdelegatedresourceaccountindex method is used for:
  • Discovering all delegation relationships for a specific account
  • Building resource delegation network graphs
  • Analyzing delegation patterns and resource flow
  • Monitoring accounts involved in resource sharing
  • Creating comprehensive resource management interfaces

Body

application/json

Response

200 - application/json

Delegated resource account index

The response is of type object.