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

# eth_getStorageAt | Ronin

> This example makes a call to slot 0 of the USDC contract on the Ronin Mainnet. Reference for eth_getStorageAt on Ronin via Chainstack.

This example makes a call to slot 0 of the [USDC contract](https://app.roninchain.com/address/0x0b7007c13325c48911f73a2dad5fa5dcbf808adc) on the Ronin Mainnet.

The `eth_getStorageAt` method returns the value stored at a specific position of the storage of a given address, expressed in hexadecimal. This method is useful for inspecting the state of smart contracts at specific storage slots.

<Note>
  When called against a block older than the latest \~128 blocks, this method is treated as an archive request (2 RUs instead of 1 RU). See [request units](/docs/request-units#archive-state-methods).
</Note>

## Parameters

* `address`: The address to get the storage from. For example, `0x0b7007c13325c48911f73a2dad5fa5dcbf808adc`.
* `position`: The storage position to inspect, given as a hexadecimal value. For example, `0x0` for the first position.
* `blockParameter` (optional): This can be a hexadecimal block number, or the strings "latest", "earliest", or "pending", indicating the state from which to get the storage value. The default is `latest`.

## Response

* `result`: The value at the specified storage position, returned as a hexadecimal string.

## Use case

This method is particularly useful for developers and auditors who need to verify the state of a smart contract's storage directly on the blockchain. It allows for detailed inspection of contract state and can be used to debug or verify contract behavior.


## OpenAPI

````yaml openapi/ronin_node_api/eth_getStorageAt.json POST /3997273fc956a67dc6982384500e669e
openapi: 3.0.0
info:
  title: eth_getStorageAt
  version: 1.0.0
  description: Returns the value from a storage position at a given address.
servers:
  - url: https://ronin-mainnet.core.chainstack.com
security: []
paths:
  /3997273fc956a67dc6982384500e669e:
    post:
      tags:
        - blockchain
      summary: Get storage value from an address
      operationId: getStorageAt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getStorageAt
                params:
                  type: array
                  items:
                    type: string
                  default:
                    - '0x0b7007c13325c48911f73a2dad5fa5dcbf808adc'
                    - '0x0'
                    - latest
      responses:
        '200':
          description: Value from the storage position in hexadecimal
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: string

````