> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# wallet/getdelegatedresourceaccountindex | TRON

> Reference docs for the wallet/getdelegatedresourceaccountindex JSON-RPC method on the TRON blockchain, available via Chainstack JSON-RPC nodes.

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.

## 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


## OpenAPI

````yaml openapi/tron_node_api/getdelegatedresourceaccountindex.json post /95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourceaccountindex
openapi: 3.0.0
info:
  title: wallet/getdelegatedresourceaccountindex TRON API
  version: 1.0.0
  description: Get delegated resource account index
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourceaccountindex:
    post:
      tags:
        - Resource Management
      summary: wallet/getdelegatedresourceaccountindex
      operationId: getDelegatedResourceAccountIndex
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - value
              properties:
                value:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Delegated resource account index
          content:
            application/json:
              schema:
                type: object
                properties:
                  account:
                    type: string
                  fromAccounts:
                    type: array
                    items:
                      type: string
                  toAccounts:
                    type: array
                    items:
                      type: string

````