Skip to main content

Get Ticker

24-hour stats and funding info for one futures symbol.

HTTP

MethodGET
Endpoint/trade/api/v2/futures/ticker
Rate limit100 requests per 60 seconds

Request Parameters

ParameterTypeMandatoryDescription
exchangestringYesEXCHANGE_2.
symbolstringYesSymbol, e.g. BTCUSDT.

Example

import requests

headers, path = sign_request("GET", "/trade/api/v2/futures/ticker",
params={"symbol": "btcusdt", "exchange": "EXCHANGE_2"})
response = requests.get(BASE_URL + path, headers=headers)
print(response.json())

Response

{
"data": {
"EXCHANGE_2": {
"low_price_24h": "94707.00",
"high_price_24h": "97276.00",
"last_price": "95136.60",
"symbol": "BTCUSDT",
"exchange": "EXCHANGE_2",
"timestamp": 1732821806680,
"best_ask_price": "95136.70",
"best_bid_price": "95136.60",
"price_24h_pcnt": "-1.297300",
"base_asset_volume_24h": "93707.6800",
"quote_asset_volume_24h": "8970676685.2608",
"index_price": 95046.53,
"mark_price": 95136.7,
"open_interest": "67529.878",
"open_interest_value": "6424569744.32",
"funding_rate": 0.00039681,
"next_funding_timestamp": 1732838400000,
"best_bid_size": "3.189",
"best_ask_size": "3.963"
}
}
}

data is keyed by exchange identifier; the value is the ticker object.

Response Parameters

FieldTypeDescription
symbolstringSymbol.
exchangestringExchange identifier.
last_pricestringLast traded price.
low_price_24h / high_price_24hstring24h range.
best_ask_price / best_bid_pricestringBest bid and ask.
best_ask_size / best_bid_sizestringQuantity at best ask / bid.
price_24h_pcntstring24h percentage change.
base_asset_volume_24hstring24h base-asset volume.
quote_asset_volume_24hstring24h quote-asset (USDT) volume.
index_pricenumberIndex price (unweighted reference).
mark_pricenumberMark price (used for liquidation and unrealised P&L).
open_intereststringTotal open interest, in base asset.
open_interest_valuestringTotal open interest, in USDT.
funding_ratenumberCurrent funding rate (decimal — 0.0001 = 0.01%).
next_funding_timestampintegerNext funding settlement (Unix ms).
timestampintegerSnapshot time (Unix ms).