Skip to main content

Get position mode

Returns the current position mode per market, optionally filtered by symbol.

Request Parameters​

NameTypeRequiredDescription
symbolStringNoOptional market symbol filter (e.g. BTC-PERP). Omit to return position modes for all symbols.

Response Content​

NameTypeDescription
symbolStringMarket symbol the position mode applies to (e.g. BTC-PERP).
positionModeStringCurrent position mode: ONE_WAY (net position) or HEDGE (independent long and short positions).
example
GEThttps://api.btse.com/futures/api/v3/trade/position_mode

Response (default)

[
{
"symbol": "BTC-PERP",
"positionMode": "ONE_WAY"
}
]