获取市场指数
HTTP 请求
GET /futures/index
请求参数
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
market | false | string | 市场名列表,多个市场名之间使用英文","分隔,限制最多10个市场,空字符串或不传表示查询全部市场 |
请求响应
参数名 | 类型 | 说明 |
---|---|---|
market | string | 市场名称 |
created_at | int | 成交时间戳(毫秒) |
price | string | 指数价格 |
sources | array | 指数成分 |
sources[n].exchange | string | 交易所名称 |
sources[n].created_at | int | 数据采集时间 |
sources[n].index_weight | string | 指数权重 |
请求示例
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"
}