Get current net liquidation
GET/netLiquidation
Returns the net liquidation value in your account calculated using the index prices at the time of the request.
This is a private endpoint. To send requests, you need to authenticate.
Rate limit weight points: 5
Request
Responses
- 200
- 4XX
The request was successful.
- application/json
- Schema
- Example (body)
Schema
netLiquidation object
The total value of the account in EUR if all positions are closed at the current market prices, including fiat and unrealized P&L.
The monetary value.
1535056.45The currency code.
EURadjustedNetLiquidation object
The total value of the account in EUR if all positions are closed at the current market prices. Includes fiat balance, unrealized profit or loss (P&L), and long position value adjusted for haircut.
The monetary value.
1505056.45The currency code.
EURminimumNetLiquidation object
The minimum net liquidation value required to trade from a leveraged account.
The monetary value.
750000.00The currency code.
EURThe ratio of adjusted net liquidation to margin requirement. Must be higher than 1.
2.34shortPositionValue object
The total value of all short positions in EUR at the current market prices. Represents the current market exposure from sold short positions.
The monetary value.
535056.45The currency code.
EURThe Unix timestamp of when the net liquidation is calculated. Cannot be used to correlate with the order events.
1752139200000000000{
"netLiquidation": {
"value": "1535056.45",
"currency": "EUR"
},
"adjustedNetLiquidation": {
"value": "1505056.45",
"currency": "EUR"
},
"minimumNetLiquidation": {
"value": "750000.00",
"currency": "EUR"
},
"marginRatio": "2.34",
"shortPositionValue": {
"value": "535056.45",
"currency": "EUR"
},
"updatedAt": 1752139200000000000
}
For error codes, see Handle errors.