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
| Name | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
exchange | string | yes | Specifes exchange | "..." | |
symbol | string | yes | Specifies symbol | "..." | |
market | string | no | Specifies market (spot, futures) | "..." | |
currency | string | no | USD | Specifies currency applied to price values (KRW, USD) (default: USD) | "USD" |
conversion_base | string | no | Specifies 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"
}
}
}