跳到主要内容

获取市场指数

HTTP 请求

GET /futures/index

请求参数

参数名是否必须类型说明
marketfalsestring市场名列表,多个市场名之间使用英文","分隔,限制最多10个市场,空字符串或不传表示查询全部市场

请求响应

参数名类型说明
marketstring市场名称
created_atint成交时间戳(毫秒)
pricestring指数价格
sourcesarray指数成分
sources[n].exchangestring交易所名称
sources[n].created_atint数据采集时间
sources[n].index_weightstring指数权重

请求示例

GET /futures/index?market=BTCUSDT

响应示例

{
"code": 0,
"data": [
{
"market": "BTCUSDT",
"created_at": 1703561120000,
"price": "30718.42",
"sources": [
{
"created_at": 1703561102173,
"exchange": "binance",
"index_weight": "0.25"
},
{
"created_at": 1703561124859,
"exchange": "coinex",
"index_weight": "0.25"
},
{
"created_at": 1703561123704,
"exchange": "mexc",
"index_weight": "0.25"
},
{
"created_at": 1703561125040,
"exchange": "bybit",
"index_weight": "0.25"
}
]
}
],
"message": "OK"
}