Get Index Price components
Description
Get the index price components for a trading pair.
HTTP Request
GET /v3/market/indexPriceComponents
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
symbol | Yes | String | A trading pair |
Response Parameters
Parameter | Type | Description |
---|---|---|
px | String | Index price |
s | String | A trading pair |
cs | Array of Json | A symbol's price from different exchanges and its weight factor. |
s | String | A trading pair |
sPx | String | Price of a trading pair |
w | String | Weight factor |
cPx | String | A trading pair's index price |
e | String | Exchange |
Request Example
{
"symbol": "DOT_USDT_PERP"
}
Response Example
{
"code": 200,
"data": [
{
"cs": [
{
"cPx": "60000",
"e": "Binance",
"sPx": "60000",
"w": "1.0"
},
{
"cPx": "0.0000",
"e": "Kucoin",
"sPx": "60000",
"w": "0.0"
},
{
"cPx": "0.0",
"e": "huobi",
"sPx": "0",
"w": "0.0"
}
],
"px": "60000",
"s": "BTC_USDT_PERP"
}
],
"msg": "Success"
}