Get Mark Price
Description
Get the current mark price.
HTTP Request
GET /v3/market/markPrice
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
symbol | No | String | A trading pair. If the field is empty, you will get all trading pairs. |
Response Parameters
Parameter | Type | Description |
---|---|---|
s | String | A trading pair, consisting of two currencies: base currency and quote currency |
mPx | String | Mark price |
Request Example
{
"symbol": "DOT_USDT_PERP"
}
Response Example
{
"code": 200,
"data": {
"mPx": "6.371",
"s": "DOT_USDT_PERP"
},
"msg": "Success"
}