Skip to main content

Notional and Leverage Brackets (USER_DATA)

API Description

Query user notional and leverage bracket on speicfic symbol

HTTP Request

GET /fapi/v1/leverageBracket

Request Weight

1

Request Parameters

NameTypeMandatoryDescription
symbolSTRINGNO
recvWindowLONGNO
timestampLONGYES

Response Example

Response:

[
{
"symbol": "ETHUSDT",
"notionalCoef": 1.50, //user symbol bracket multiplier, only appears when user's symbol bracket is adjusted
"brackets": [
{
"bracket": 1, // Notional bracket
"initialLeverage": 75, // Max initial leverage for this bracket
"notionalCap": 10000, // Cap notional of this bracket
"notionalFloor": 0, // Notional threshold of this bracket
"maintMarginRatio": 0.0065, // Maintenance ratio for this bracket
"cum":0 // Auxiliary number for quick calculation

},
]
}
]

OR (if symbol sent)


{
"symbol": "ETHUSDT",
"notionalCoef": 1.50,
"brackets": [
{
"bracket": 1,
"initialLeverage": 75,
"notionalCap": 10000,
"notionalFloor": 0,
"maintMarginRatio": 0.0065,
"cum":0
},
]
}