> For the complete documentation index, see [llms.txt](https://nownodes.gitbook.io/core-core/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nownodes.gitbook.io/core-core/core-core/evm/eth_getproof.md).

# Eth\_getProof

## Get account proof

> Returns the account and storage values of the specified account, including Merkle proof data. Requires account address and list of storage keys as parameters.<br>

```json
{"openapi":"3.0.3","info":{"title":"eth_getProof","version":"1.0.0"},"servers":[{"url":"https://core.nownodes.io"}],"security":[{"ApiKeyAuth":[]}],"components":{"securitySchemes":{"ApiKeyAuth":{"type":"apiKey","in":"header","name":"api-key"}}},"paths":{"/":{"post":{"tags":["eth_getProof"],"summary":"Get account proof","description":"Returns the account and storage values of the specified account, including Merkle proof data. Requires account address and list of storage keys as parameters.\n","operationId":"ethGetProof","requestBody":{"required":true,"content":{"application/json":{"schema":{"type":"object","required":["jsonrpc","method","id","params"],"properties":{"jsonrpc":{"type":"string"},"method":{"type":"string"},"id":{"type":"integer"},"params":{"type":"array","description":"Parameters for the proof request:   - `address` (string) – account address   - `storageKeys` (array) – array of storage keys (32-byte hex strings)   - `block` (string) – block number or tag (`latest`, `earliest`, `pending`)\n","items":{"oneOf":[{"type":"string"},{"type":"array","items":{"type":"string"}}]}}}}}}},"responses":{"200":{"description":"Account proof or error response","content":{"application/json":{"schema":{"type":"object","properties":{"jsonrpc":{"type":"string"},"id":{"type":"integer"},"result":{"type":"object","nullable":true,"description":"Proof data if request is valid."},"error":{"type":"object","nullable":true,"description":"Error response if request is invalid.","properties":{"code":{"type":"integer"},"message":{"type":"string"}}}}}}}}}}}}}
```
