Skip to content

Get Ticker

Description

Get ticker data of the given futures name

HTTP Request

  • GET /fapi/v1/market/ticker

Request Parameters

ParameterTypeRequiredDescription
futuresNameStringYesfutures name, e.g. "E-BTC-USDT"

Request Example

http
curl 'https://futuresopenapi.100ex.com/fapi/v1/market/ticker?futuresName=E-BTC-USDT'

Response Parameters

ParameterTypeDescription
highString24h high
lowString24h low
volString24h transaction volume
lastStringLast price
buyStringCurrent buying price
sellStringCurrent selling price
roseStringPrice increase or decrease (24 hours)
timeStringTimestamp

Response Example

json
{
    "code": "0",
    "msg": "成功",
    "data": {
        "high": "57879",
        "vol": "0",
        "last": "57879",
        "low": "57879",
        "buy": "92769.9",
        "sell": "57879",
        "rose": "0",
        "time": "1736763900000"
    }
}