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

# jsonrpc eth_getStorageAt | TRON

> TRON API method that returns the value from a storage position at a given address. This method provides Ethereum-compatible interface for TRON blockchain.

TRON API method that returns the value stored at a specific storage position of a smart contract, providing an Ethereum-compatible interface for accessing TRON blockchain data.

## Parameters

* `jsonrpc` — the JSON-RPC protocol version (always "2.0")
* `method` — the method name (always "eth\_getStorageAt")
* `params` — array containing method parameters
  * `address` — the contract address to read storage from
  * `position` — the storage position (slot) as hex string
  * `blockParameter` — only `"latest"` is supported; TRON has no historical state queries, see [Historical data availability](/docs/tron-tooling#historical-data-availability)
* `id` — request identifier (number or string)

## Response

* `jsonrpc` — the JSON-RPC protocol version ("2.0")
* `id` — the request identifier that matches the request
* `result` — the value at the storage position as a hex string

## Use case

The `jsonrpc eth_getStorageAt` method is used for:

* Reading smart contract state variables directly through Web3 interfaces
* Debugging and analyzing contract storage layout and values
* Building advanced dApp functionality that requires direct storage access
* Implementing contract monitoring tools that track state changes


## OpenAPI

````yaml openapi/tron_node_api/jsonrpc_eth_getStorageAt.json POST /95e61622bf6a8af293978377718e3b77/jsonrpc
openapi: 3.0.0
info:
  title: eth_getStorageAt example
  version: 1.0.0
  description: >-
    This is an API example for eth_getStorageAt, a method to get storage value
    at a specific position for a contract on the TRON network through
    Ethereum-compatible JSON-RPC interface.
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/jsonrpc:
    post:
      tags:
        - TRON JSON-RPC Operations
      summary: eth_getStorageAt
      operationId: getStorageAt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getStorageAt
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  default:
                    - '0x407d73d8a49eeb85d32cf465507dd71d507100c1'
                    - '0x0'
                    - latest
                  items:
                    type: string
                  minItems: 3
                  maxItems: 3
      responses:
        '200':
          description: Storage value at the specified position
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: string
                    description: The value at the storage position as hex string

````