POST
/
eth_getStorageAt
curl --request POST \
  --url https://api.mainnet.abs.xyz/eth_getStorageAt \
  --header 'Content-Type: application/json' \
  --data '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "eth_getStorageAt",
  "params": [
    "0x8fe5810cd78eb8d8b9abad8527dfc1265bee6c56",
    "0x0",
    "latest"
  ]
}'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": "0x0000000000000000000000000000000000000000000000000000000000000000"
}

Body

application/json
jsonrpc
string
default:2.0
required

JSON-RPC version

method
string
default:eth_getStorageAt
required

The method to call

params
any[]
required

Address, storage position, and block parameter

id
integer
default:1
required

Request identifier

Response

200 - application/json
Returns the storage value at the given position
jsonrpc
string
Example:

"2.0"

id
integer
Example:

1

result
string

The value at the storage position

Example:

"0x0000000000000000000000000000000000000000000000000000000000000000"