get_symbol_price
Fetch real-time cryptocurrency pair prices directly from Binance using the provided symbol (e.g., BTCUSDT). Retrieve accurate price data for trading or analysis.
Instructions
Get the current price of a cryptocurrency pair.
Args: symbol: The cryptocurrency pair, e.g., BTCUSDT.
Returns: Price information from Binance.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"title": "Symbol",
"type": "string"
}
},
"required": [
"symbol"
],
"title": "get_symbol_priceArguments",
"type": "object"
}