Get position mode
GETπ Trading
Returns the current position mode per market, optionally filtered by symbol.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | No | Optional market symbol filter (e.g. BTC-PERP). Omit to return position modes for all symbols. |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| symbol | String | Market symbol the position mode applies to (e.g. BTC-PERP). |
| positionMode | String | Current position mode: ONE_WAY (net position) or HEDGE (independent long and short positions). |
example
GET
https://api.btse.com/futures/api/v3/trade/position_modeResponse (default)
[
{
"symbol": "BTC-PERP",
"positionMode": "ONE_WAY"
}
]