get-price
Retrieve the current price of any cryptocurrency trading pair from leading exchanges including Binance, Coinbase, and Kraken using market data integration.
Instructions
Get current price of a cryptocurrency pair from a specific exchange
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| exchange | No | Exchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc) | binance | 
| symbol | Yes | Trading pair symbol (e.g., BTC/USDT, ETH/USDT) | 
Input Schema (JSON Schema)
{
  "properties": {
    "exchange": {
      "default": "binance",
      "description": "Exchange to use (supported: binance, coinbase, kraken, kucoin, hyperliquid, huobi, bitfinex, bybit, okx, mexc)",
      "enum": [
        "binance",
        "coinbase",
        "kraken",
        "kucoin",
        "hyperliquid",
        "huobi",
        "bitfinex",
        "bybit",
        "okx",
        "mexc"
      ],
      "type": "string"
    },
    "symbol": {
      "description": "Trading pair symbol (e.g., BTC/USDT, ETH/USDT)",
      "type": "string"
    }
  },
  "required": [
    "symbol"
  ],
  "type": "object"
}