get-wallet-balance
Retrieve cryptocurrency wallet balance data for a specified address and blockchain network to monitor holdings and track portfolio performance.
Instructions
Get the balance data for a provided wallet address on a specific blockchain network.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | Wallet address | |
connectionId | Yes | The identifier of connection, which you received from /wallet/blockchains call response. |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"description": "Wallet address",
"type": "string"
},
"connectionId": {
"description": "The identifier of connection, which you received from /wallet/blockchains call response.",
"type": "string"
}
},
"required": [
"address",
"connectionId"
],
"type": "object"
}