Get Index Price Components
Description
Get index price components
HTTP Request
- GET /api/v3/market/index-components
- Rate limit: 10/sec/IP
Request
curl "https://api.bitget.com/api/v3/market/index-components?symbol=BTCUSDT"
Request Parameters
| Parameter | Type | Required | Comments |
|---|---|---|---|
| symbol | String | YES | Trading pair, e.g. BTCUSDT |
Response
{
"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"
}
]
}
}
Response Parameters
| Parameter | Type | Comments |
|---|---|---|
| symbol | String | Trading pair |
| componentList | List<Object> | Index price component list |
| > exchange | String | Exchange |
| > spotPair | String | Spot trading pair name |
| > equivalentPrice | String | Equivalent price |
| > weight | String | Calculation weight - Decimal format, e.g., 0.5 represents 50% |