get_account_balance
Retrieve the balance of a specific cryptocurrency asset on Binance. Input the asset symbol (e.g., BTC) to receive detailed balance information for accurate account management.
Instructions
Get the balance of a specific cryptocurrency asset.
Args: asset: The cryptocurrency symbol, e.g., BTC.
Returns: Asset balance info.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
asset | Yes |
Input Schema (JSON Schema)
{
"properties": {
"asset": {
"title": "Asset",
"type": "string"
}
},
"required": [
"asset"
],
"title": "get_account_balanceArguments",
"type": "object"
}