Skip to main content

Get Mark Price

Description

Get the current mark price.

HTTP Request

GET /v3/market/markPrice

Request Parameters

ParameterRequiredTypeDescription
symbolNoStringA trading pair. If the field is empty, you will get all trading pairs.

Response Parameters

ParameterTypeDescription
sStringA trading pair, consisting of two currencies: base currency and quote currency
mPxStringMark price

Request Example

{
"symbol": "DOT_USDT_PERP"
}

Response Example

{
"code": 200,
"data": {
"mPx": "6.371",
"s": "DOT_USDT_PERP"
},
"msg": "Success"
}