Skip to main content

Ticker

Returns market data for a given trading pair.

GET /v1/market/ticker

Query Parameters

Paramtypedescription
symbolstringa valid trading symbol code. e.g. KLV-USDT

Response

ParamTypeExampleDescription
symbolstring"KLV-USDT"Unique code of a symbol.
baseVolumestring"360038.94956547837"24h aggregated trading volume to KLV
basePrecisionstring"5"The max base precision accept by orderbook
quotePrecisionstring"6"The max quote precision accept by orderbook
quoteVolumestring"91932.3453820492469958"24h trading volume in quote currency USDT
pricestring"0.25534"Last price
highstring"0.257399"24h highest price
lowstring"0.25191"24h lowest price
bidstring"0.257399"best bid price
askstring"0.2519 1"best ask price
variationPricestring"0.001016"24h price variation
variationRatePricestring"0.39949041380286565"24h price variation rate
timeTimestamp1647903497timestamp

Response Example

{
"success": true,
"data": {
"symbol": "DVK-KLV",
"basePrecision": "5",
"quotePrecision": "6",
"baseVolume": "360038.94956547837",
"quoteVolume": "91932.3453820492469958",
"price": "0.25534",
"high": "0.257399",
"low": "0.25191",
"bid": "0.25534",
"ask": "0.25534",
"variationPrice": "0.001016",
"variationRatePrice": "0.39949041380286565",
"time": 1647903497
}
}