Skip to main content

Get Market Information

HTTP request

GET /futures/ticker

Request parameters

Parameter NameRequiredTypeNotes
marketfalsestringList of market names. Use "," to separate multiple market names. Null or pass to query all markets. With a maximum limit of 10 markets.

Return parameters

Parameter NameTypeNotes
marketstringMarket name
laststringLatest price
openstringOpening price
closestringClosing price
highstringHighest price
lowstringLowest price
volumestringFilled volume
valuestringFilled value
volume_sellstringTaker selling volume
volume_buystringTaker buying volume
index_pricestringIndex price
mark_pricestringMark price
periodintPeriod, fixed at 86400, indicates that the data is a one-day value

Response example

GET /futures/ticker?market=LATUSDT,ELONUSDT

Response example

{
"code": 0,
"data": [
{
"market": "LATUSDT",
"last": "0.008157",
"open": "0.008286",
"close": "0.008157",
"high": "0.008390",
"low": "0.008106",
"volume": "807714.49139758",
"volume_sell": "286170.69645599",
"volume_buy": "266161.23236408",
"value": "6689.21644207",
"index_price": "0.008158",
"mark_price": "0.008158",
"period": 86400
},
{
"market": "ELONUSDT",
"last": "0.000000152823",
"open": "0.000000158650",
"close": "0.000000152823",
"high": "0.000000159474",
"low": "0.000000147026",
"volume": "88014042237.15",
"volume_sell": "11455578769.13",
"volume_buy": "17047669612.10",
"value": "13345.65122447",
"index_price": "0.000000152821",
"mark_price": "0.000000152821",
"period": 86400,
}
],
"message": "OK"
}