본문으로 건너뛰기

ticker

Get latest ticker data for a trading pair from a specific exchange. Returns current price, 24h volume, 24h price change, bid/ask prices. Essential for real-time price monitoring and cross-exchange comparison.

Usage hints:

  • Both exchange and symbol are required
  • Set currency=KRW for Korean Won prices
  • Combine with ticker from other exchanges for price comparison
  • Use conversion_base to normalize prices across different quote currencies

REST endpoint

GET /api/v1/ticker — see REST reference.

Parameters

NameTypeRequiredDefaultDescriptionExample
exchangestringyesSpecifes exchange"..."
symbolstringyesSpecifies symbol"..."
marketstringnoSpecifies market (spot, futures)"..."
currencystringnoUSDSpecifies currency applied to price values (KRW, USD) (default: USD)"USD"
conversion_basestringnoSpecifies conversion base applied to price values"..."

Example invocation

JSON-RPC tools/call payload:

{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "ticker",
"arguments": {
"exchange": "...",
"symbol": "...",
"currency": "USD"
}
}
}