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

# getStorageAt

> Returns the value from a storage position at a given address.



## OpenAPI

````yaml openapi-getStorageAt POST /
openapi: 3.0.0
info:
  title: Quai JSON RPC API
  version: 1.0.0
servers:
  - url: https://rpc.quai.network/cyprus1
security: []
paths:
  /:
    post:
      summary: quai_getStorageAt
      description: Returns the value from a storage position at a given address.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Request'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Response'
components:
  schemas:
    Request:
      type: object
      required:
        - jsonrpc
        - method
        - params
        - id
      properties:
        jsonrpc:
          type: string
          example: '2.0'
          enum:
            - '2.0'
        method:
          type: string
          description: The name of the method to be invoked.
          example: quai_getStorageAt
          enum:
            - quai_getStorageAt
        params:
          type: array
          items:
            type: string
          description: >-
            The address to return code stored at, the value corresponding to the
            storage position, the default block parameter.
          maxItems: 3
          minItems: 3
          example:
            - '0x1dbbB54b402E725aD96fEc342AF5150a1560D4c7'
            - '0x0000000000000000000000000000000000000000000000000000000000000003'
            - latest
        id:
          type: integer
          description: A unique identifier for the request.
          example: 1
    Response:
      type: object
      properties:
        jsonrpc:
          type: string
          example: '2.0'
        result:
          type: string
          example: '0x0000000000000000000000000000000000000000000000000000000000004d2'
          description: The value at the given storage position.
        id:
          type: integer
          example: 1

````