get-exchange-balance
Retrieve cryptocurrency balance data from connected exchanges to monitor holdings and track portfolio performance.
Instructions
Get the balance data for a provided Exchange.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionFields | Yes | The credentials given from exchange. key, secret etc. | |
connectionId | Yes | The exchange connection id |
Input Schema (JSON Schema)
{
"properties": {
"connectionFields": {
"additionalProperties": false,
"description": "The credentials given from exchange. key, secret etc.",
"properties": {},
"type": "object"
},
"connectionId": {
"description": "The exchange connection id",
"type": "string"
}
},
"required": [
"connectionFields",
"connectionId"
],
"type": "object"
}