get-wallet-balances
Retrieve cryptocurrency balance data for any wallet address across multiple blockchain networks using the CoinStats API.
Instructions
Get the balance data for a provided wallet address on all CoinStats supported networks.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The wallet address for which the balance is being queried | |
networks | No | Blockchain networks to query, comma-separated (e.g., "ethereum,polygon,binance") | all |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "The wallet address for which the balance is being queried",
"type": "string"
},
"networks": {
"default": "all",
"description": "Blockchain networks to query, comma-separated (e.g., \"ethereum,polygon,binance\")",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}