获取指数价格成分
描述
获取指数价格成分。
HTTP请求
- GET /api/v3/market/index-components
- 限频规则:10次/秒/IP
请求示例
curl "https://api.bitget.com/api/v3/market/index-components?symbol=BTCUSDT"
请求参数
| 参数名 | 参数类型 | 是否必须 | 描述 |
|---|---|---|---|
| symbol | String | 是 | 交易币对 |
返回示例
{
"code": "00000",
"msg": "success",
"requestTime": 1767159256214,
"data": {
"symbol": "BTCUSDT",
"componentList": [
{
"exchange": "BITGET_FUTURE",
"spotPair": "BTC/USDT",
"equivalentPrice": "88432.1",
"weight": "0.4696"
},
{
"exchange": "GATEIO",
"spotPair": "BTC/USDT",
"equivalentPrice": "88467",
"weight": "0.164"
},
{
"exchange": "BINANCE",
"spotPair": "BTC/USDT",
"equivalentPrice": "88456.65",
"weight": "0.1434"
},
{
"exchange": "MEXC",
"spotPair": "BTC/USDT",
"equivalentPrice": "88457.1",
"weight": "0.0992"
},
{
"exchange": "BITGET",
"spotPair": "BTC/USDT",
"equivalentPrice": "88469.77",
"weight": "0.0768"
},
{
"exchange": "OKX",
"spotPair": "BTC/USDT",
"equivalentPrice": "88463",
"weight": "0.0468"
}
]
}
}
返回参数
| 返回字段 | 参数类型 | 字段说明 |
|---|---|---|
| symbol | String | 交易对名称 |
| componentList | List<Object> | 指数价格组成列表 |
| > exchange | String | 交易所 |
| > spotPair | String | 现货交易对名称 |
| > equivalentPrice | String | 等值价格 |
| > weight | String | 计算权重 - 小数形式,如0.5代表50% |