Skip to main content

Get Margin Mode

Description:

Get the current margin mode.

HTTP Request

GET /v3/position/marginType

Request Parameters

ParameterRequiredTypeDescription
symbolYesStringA trading pair, consisting of two currencies: base currency and quote currency

Response Parameters

ParameterTypeDescription
symbolStringA trading pair, consisting of two currencies: base currency and quote currency
mgnModeStringMargin Mode, Enumerate: ISOLATED, CROSS

Request Example

{
"symbol":"DOGE_USDT_PERP"
}

Response Example

{
"code": 200,
"data": {
"mgnMode": "CROSS",
"symbol": "DOGE_USDT_PERP"
},
"msg": "Success"
}