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

> TRON API method that retrieves delegated resource information using the Stake 2.0 mechanism between accounts on the TRON blockchain.

TRON API method that retrieves delegated resource information using the Stake 2.0 mechanism 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/getdelegatedresourcev2` method is used for:

* Checking Stake 2.0 delegated resources between specific accounts
* Monitoring resource delegation relationships under the new staking mechanism
* Verifying delegation amounts and expiration times
* Building modern resource management dashboards
* Analyzing updated resource sharing patterns


## OpenAPI

````yaml openapi/tron_node_api/getdelegatedresourcev2.json post /95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourcev2
openapi: 3.0.0
info:
  title: wallet/getdelegatedresourcev2 TRON API
  version: 1.0.0
  description: Get delegated resource information using Stake 2.0
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/wallet/getdelegatedresourcev2:
    post:
      tags:
        - Resource Management
      summary: wallet/getdelegatedresourcev2
      operationId: getDelegatedResourceV2
      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 (Stake 2.0)
          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

````