get_price
Fetch real-time cryptocurrency prices from Binance for single or multiple trading pairs using natural language queries, enabling quick market data access for AI agents.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | No | Trading pair symbol, e.g. BTCUSDT | |
symbols | No | Array of multiple trading pair symbols |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"symbol": {
"description": "Trading pair symbol, e.g. BTCUSDT",
"type": "string"
},
"symbols": {
"description": "Array of multiple trading pair symbols",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}