{
  "openapi": "3.1.0",
  "info": {
    "title": "eth_getStorageAt",
    "version": "2.0.0",
    "description": "Get the value at a storage position.",
    "license": {
      "name": "Etherscan API Terms",
      "url": "https://etherscan.io/terms"
    }
  },
  "servers": [
    {
      "url": "https://api.etherscan.io",
      "description": "Etherscan API."
    }
  ],
  "security": [
    {
      "apiKey": []
    }
  ],
  "paths": {
    "/v2/api": {
      "get": {
        "operationId": "getEthgetstorageat",
        "summary": "eth_getStorageAt",
        "description": "Get the value at a storage position.",
        "parameters": [
          {
            "name": "chainid",
            "in": "query",
            "required": true,
            "description": "Chain ID to query, eg 1 for Ethereum, 8453 for Base from our supported chains.",
            "schema": {
              "type": "string"
            },
            "example": "1"
          },
          {
            "name": "module",
            "in": "query",
            "required": true,
            "description": "Set to proxy for this endpoint.",
            "schema": {
              "type": "string",
              "default": "proxy"
            },
            "example": "proxy"
          },
          {
            "name": "action",
            "in": "query",
            "required": true,
            "description": "Set to eth_getStorageAt for this endpoint.",
            "schema": {
              "type": "string",
              "default": "eth_getStorageAt"
            },
            "example": "eth_getStorageAt"
          },
          {
            "name": "address",
            "in": "query",
            "required": true,
            "description": "The address to query.",
            "schema": {
              "type": "string"
            },
            "example": "0x6e03d9cce9d60f3e9f2597e13cd4c54c55330cfd"
          },
          {
            "name": "position",
            "in": "query",
            "required": true,
            "description": "Storage position in hex.",
            "schema": {
              "type": "string"
            },
            "example": "0x0"
          },
          {
            "name": "tag",
            "in": "query",
            "required": false,
            "description": "Use latest, earliest, pending, or a block number in hex.",
            "schema": {
              "type": "string"
            },
            "example": "latest"
          }
        ],
        "security": [
          {
            "apiKey": []
          }
        ],
        "x-mint": {
          "metadata": {
            "title": "eth_getStorageAt",
            "description": "Get the value at a storage position."
          }
        },
        "x-etherscan-source-page": {
          "page": "api-reference/endpoint/ethgetstorageat",
          "title": "eth_getStorageAt",
          "module": "proxy",
          "action": "eth_getStorageAt"
        }
      }
    }
  },
  "components": {
    "securitySchemes": {
      "apiKey": {
        "type": "apiKey",
        "in": "query",
        "name": "apikey",
        "description": "Your Etherscan API key."
      }
    }
  }
}