Skip to main content

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​

NameTypeRequiredDescription
symbolStringNoTrading symbol filter (e.g., BTC-PERP). Optional; when omitted, margin settings for all supported symbols are returned.

Response Content​

NameTypeDescription
symbolStringTrading symbol.
initialMarginPercentageDoubleInitial margin percentage required to open a position on this symbol.
maintenanceMarginPercentageDoubleMaintenance margin percentage required to keep a position open on this symbol.
example
GEThttps://api.btse.com/futures/api/v3/trade/margin_setting

Response (default)

[
{
"symbol": "BTC-PERP",
"initialMarginPercentage": 0.01,
"maintenanceMarginPercentage": 0.005
}
]