Get leverage settings
GETπ Trading
Returns the current leverage configuration for the given symbol, or the default leverage when the caller has no position on it.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | Yes | Trading symbol to look up (e.g., BTC-PERP). |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| symbol | String | Trading symbol. |
| leverage | Double | Effective leverage multiplier for the position, or the default leverage when the user has no position on this symbol. |
| marginMode | String | Margin mode: CROSS or ISOLATED. |
| positionMode | String | Position mode: ONE_WAY or HEDGE. Null when the user has no position on this symbol. |
| positionDirection | String | Position direction (LONG or SHORT) for hedge-mode positions; null otherwise. |
example
GET
https://api.btse.com/futures/api/v3/trade/leverageResponse (default)
[
{
"symbol": "BTC-PERP",
"leverage": 10,
"marginMode": "ISOLATED",
"positionMode": "ONE_WAY",
"positionDirection": null
}
]