get_price
Retrieve current market prices for trading pairs on Binance to monitor cryptocurrency values and make informed trading decisions.
Instructions
获取指定交易对的当前价格
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| symbol | Yes | 交易对符号,如 BTCUSDT |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "交易对符号,如 BTCUSDT",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}