getEthBalance
Retrieve the Ethereum balance of any wallet address using this tool. Simplify blockchain analysis by querying on-chain data for accurate wallet insights.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"pattern": "^0x[a-fA-F0-9]{40}$",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}