Skip to main content

Get leverage settings

Returns the current leverage configuration for the given symbol, or the default leverage when the caller has no position on it.

Request Parameters​

NameTypeRequiredDescription
symbolStringYesTrading symbol to look up (e.g., BTC-PERP).

Response Content​

NameTypeDescription
symbolStringTrading symbol.
leverageDoubleEffective leverage multiplier for the position, or the default leverage when the user has no position on this symbol.
marginModeStringMargin mode: CROSS or ISOLATED.
positionModeStringPosition mode: ONE_WAY or HEDGE. Null when the user has no position on this symbol.
positionDirectionStringPosition direction (LONG or SHORT) for hedge-mode positions; null otherwise.
example
GEThttps://api.btse.com/futures/api/v3/trade/leverage

Response (default)

[
{
"symbol": "BTC-PERP",
"leverage": 10,
"marginMode": "ISOLATED",
"positionMode": "ONE_WAY",
"positionDirection": null
}
]