Lot History
Get lot history from liquidation auction by filters
GET https://api.staging.dexilon.io/api/v1/liquidationAuction/history
Weight: 10
Query Parameters
Name
Type
Description
symbol
String
Symbol name
dateFrom
Date
dateTo
Date
page
Integer
Number of page
side
Enum
Side of lot: BUY, SELL
size
Integer
Number of returned lots
{
"content": [
{
"lotId": 43951134,
"symbol": "near_usdt",
"side": "SELL",
"amount": 200000,
"totalBids": 5,
"averageLiquidationPrice": 2.20369,
"marginCallPrice": 2.19535,
"discount": 0.1,
"updatedAt": 1679169186249
},
{
"lotId": 15310409
"symbol": "ape_usdt",
"side": "SELL",
"amount": 100000,
"totalBids": 5,
"averageLiquidationPrice": 4.45212,
"marginCallPrice": 4.43516,
"discount": 0.4,
"updatedAt": 1679169301814
}
],
"totalPages": 1,
"totalElements": 2,
"size": 20
}Last updated