Skip to content

Get Tickers

Rate Limit: 10 req/sec/ip

Description

Interface is used to get future trading pair tickers.

HTTP Request

  • GET /api/v1/futures/market/tickers

Request Parameters

ParameterTypeRequiredDescription
symbolsstringfalseTrading pairs, based on the symbolName, i.e. BTCUSDT,ETHUSDT,XRPUSDT

Request Example

bash
curl -X 'GET'  --location 'https://fapi.bitunix.com/api/v1/futures/market/tickers?symbols=BTCUSDT,ETHUSDT'

Response Parameters

ParameterTypeDescription
symbolstringCoin pair name i.e. BTCUSDT
markPricestringmark price
lastPricestringlast price
openstringEntry price of the last 24 hours
laststringlast price
quoteVolstringTrading volume of the coin(last 24 hours)
baseVolstringTrading volume of the last 24 hours
highstring24h high
lowstring24h low

Response Example

json
{"code":0,"data":[{"symbol":"BTCUSDT","markPrice":"57892.1","lastPrice":"57891.2","open":"6.31","last":"6.31","quoteVol":"0","baseVol":"0","high":"6.31","low":"6.31"},{"symbol":"ETHUSDT","markPrice":"2000","lastPrice":"2020.1","open":"6.31","last":"6.31","quoteVol":"0","baseVol":"0","high":"6.31","low":"6.31"}],"msg":"Success"}