POST
/
95e61622bf6a8af293978377718e3b77
/
wallet
/
getdelegatedresourceaccountindexv2
wallet/getdelegatedresourceaccountindexv2
curl --request POST \
  --url https://tron-mainnet.core.chainstack.com/95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourceaccountindexv2 \
  --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 using the Stake 2.0 mechanism, showing all accounts involved in resource delegation relationships.
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/getdelegatedresourceaccountindexv2 method is used for:
  • Discovering all Stake 2.0 delegation relationships for a specific account
  • Building updated resource delegation network graphs
  • Analyzing modern delegation patterns and resource flow
  • Monitoring accounts involved in Stake 2.0 resource sharing
  • Creating comprehensive resource management interfaces for the new staking system

Body

application/json

Response

200 - application/json

Delegated resource account index (Stake 2.0)

The response is of type object.