get_etf_balance
Check ETF token balance for any wallet address across multiple blockchain networks including Ethereum, Arbitrum, and Polygon. Retrieve token holdings data by specifying chain ID and token contract address.
Instructions
Get ETF token balance for a wallet address.
Args:
chain_id: Chain ID (1, 10, 56, 100, 137, 8453, 42161)
etf_token_address: Address of the ETF token
wallet_address: Wallet address to check (defaults to server wallet)
Returns:
JSON string with ETF token balance information.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chain_id | Yes | ||
| etf_token_address | Yes | ||
| wallet_address | No |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"title": "Chain Id",
"type": "string"
},
"etf_token_address": {
"title": "Etf Token Address",
"type": "string"
},
"wallet_address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Wallet Address"
}
},
"required": [
"chain_id",
"etf_token_address"
],
"type": "object"
}