> ## 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/getdelegatedresource | TRON

> TRON API method that retrieves information about delegated resources (bandwidth and energy) between accounts on the TRON blockchain.

TRON API method that retrieves information about delegated resources (bandwidth and energy) between accounts on the TRON blockchain.

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


## OpenAPI

````yaml openapi/tron_node_api/getdelegatedresource.json post /95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresource
openapi: 3.0.0
info:
  title: wallet/getdelegatedresource TRON API
  version: 1.0.0
  description: Get delegated resource information between accounts
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresource:
    post:
      tags:
        - Resource Management
      summary: wallet/getdelegatedresource
      operationId: getDelegatedResource
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - fromAddress
                - toAddress
              properties:
                fromAddress:
                  type: string
                  default: TZ4UXDV5ZhNW7fb2AMSbgfAEZ7hWsnYS2g
                toAddress:
                  type: string
                  default: TFgY1uN8buRxAtV2r6Zy5sG3ACko6pJT1y
                visible:
                  type: boolean
                  default: true
      responses:
        '200':
          description: Delegated resource information
          content:
            application/json:
              schema:
                type: object
                properties:
                  delegatedResource:
                    type: array
                    items:
                      type: object
                      properties:
                        from:
                          type: string
                        to:
                          type: string
                        frozen_balance_for_bandwidth:
                          type: integer
                        frozen_balance_for_energy:
                          type: integer
                        expire_time_for_bandwidth:
                          type: integer
                        expire_time_for_energy:
                          type: integer

````