Get margin settings
Returns the initial and maintenance margin percentages for the specified symbol, or for all supported symbols when no symbol is provided.
Request Parametersβ
| Name | Type | Required | Description |
|---|---|---|---|
| symbol | String | No | Trading symbol filter (e.g., BTC-PERP). Optional; when omitted, margin settings for all supported symbols are returned. |
Response Contentβ
| Name | Type | Description |
|---|---|---|
| symbol | String | Trading symbol. |
| initialMarginPercentage | Double | Initial margin percentage required to open a position on this symbol. |
| maintenanceMarginPercentage | Double | Maintenance margin percentage required to keep a position open on this symbol. |
example
GET
https://api.btse.com/futures/api/v3/trade/margin_settingResponse (default)
[
{
"symbol": "BTC-PERP",
"initialMarginPercentage": 0.01,
"maintenanceMarginPercentage": 0.005
}
]