getPrice
Retrieve real-time spot or futures trading prices for specified cryptocurrency pairs using this tool, enabling accurate market data access for trading decisions.
Instructions
Get current price for a trading pair (spot or futures)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
symbol | Yes | Trading pair symbol (e.g., BTCUSDT for spot, BTCUSDT_UMCBL for futures) |
Input Schema (JSON Schema)
{
"properties": {
"symbol": {
"description": "Trading pair symbol (e.g., BTCUSDT for spot, BTCUSDT_UMCBL for futures)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}