get_address_balance_single_chain
Retrieve cryptocurrency balance for a specific address on a single blockchain network. Check wallet holdings across supported chains including Ethereum, Arbitrum, and Polygon using chain ID and address parameters.
Instructions
Get balance for a specific address on a single chain (faster).
Args:
address: Ethereum address to check balances for
chain_id: Chain ID (1, 10, 56, 100, 137, 8453, 42161)
Returns:
JSON string with balance information for the specified chain.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | ||
| chain_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"title": "Address",
"type": "string"
},
"chain_id": {
"title": "Chain Id",
"type": "string"
}
},
"required": [
"address",
"chain_id"
],
"type": "object"
}