Skip to main content

Get Ticker

Get 24-hour market data for a specified futures trading pair.

API Information

  • Method: GET
  • Path: /fapi/v1/ticker/{symbol}

Request Parameters

ParameterLocationTypeRequiredDescription
symbolpathstringYesTrading pair, e.g. BTC_USDT

Request Example

GET /fapi/v1/ticker/BTC_USDT

Response Fields

FieldTypeDescription
codeintegerError code, 0 indicates success
messagestringError message
dataobjectTicker data
data.symbolstringTrading pair
data.lastPricestringLast traded price
data.lastQtystringLast traded quantity
data.bestAskstringBest ask price
data.bestBidstringBest bid price
data.open24hstring24-hour open price
data.high24hstring24-hour high price
data.low24hstring24-hour low price
data.volume24hstring24-hour volume (base asset)
data.quoteVolume24hstring24-hour turnover (quote asset)
data.priceChange24hstring24-hour price change
data.priceChangePercentstring24-hour percentage change (%)
data.timestampintegerTimestamp (milliseconds)

Response Example

{
"code": 0,
"message": "success",
"data": {
"symbol": "BTC_USDT",
"lastPrice": "42165.30",
"lastQty": "0.125",
"bestAsk": "42166.00",
"bestBid": "42165.00",
"open24h": "41600.00",
"high24h": "42500.00",
"low24h": "41200.00",
"volume24h": "1250.45",
"quoteVolume24h": "52894567.75",
"priceChange24h": "565.30",
"priceChangePercent": "1.36",
"timestamp": 1768051394008
}
}