Skip to main content

Get All-Pairs Ticker

24-hour stats for every futures symbol on the exchange.

HTTP

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

Request Parameters

ParameterTypeMandatoryDescription
exchangestringYesEXCHANGE_2.

Example

import requests

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

Response

data is an object keyed by symbol. Each value has the same shape as Get Ticker.

{
"data": {
"BTCUSDT": {
"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"
}
}
}

See Get Ticker for field descriptions.