Get Margin Mode
Description:
Note: Deprecated, please refer to Changelog-Futures for details
Get the current margin mode.
HTTP Request
GET /v3/position/marginType
Request Parameters
Parameter | Required | Type | Description |
---|---|---|---|
symbol | Yes | String | A trading pair, consisting of two currencies: base currency and quote currency |
Response Parameters
Parameter | Type | Description |
---|---|---|
symbol | String | A trading pair, consisting of two currencies: base currency and quote currency |
mgnMode | String | Margin Mode, Enumerate: ISOLATED , CROSS |
Request Example
{
"symbol":"DOGE_USDT_PERP"
}
Response Example
{
"code": 200,
"data": {
"mgnMode": "CROSS",
"symbol": "DOGE_USDT_PERP"
},
"msg": "Success"
}