Liquidations
Get Liquidated Positions Info
Partner Support
User Flows
General API
- Builder Info
- System Info
- USDC Faucet
User API
- Registration
- Key Management
- Account/User Info
- Account Notifications
- Account Config
- Delegate Signer
Trading API
- Order Management
- Liquidations
- Assets/Withdraw/Settle PnL
- Positions
- Funding
Rewards API
- Trading Rewards
- Market Making Rewards
Staking & Valor API
- Staking
- Valor
Builder API
- User Data
- Trading Campaigns
- Fee Setting
- Referral Program
Market Data API
- TradingView
- Funding Rates
- Market Info
Websocket API
- Introduction
- PING/PONG
- Authentication
- Error Response
- Public Market Data
- Private User Data
Liquidations
Get Liquidated Positions Info
Limit: 10 requests per 1 second per IP address
GET /v1/public/liquidated_positions
GET
/
v1
/
public
/
liquidated_positions
curl --request GET \
--url https://api-evm.orderly.org/v1/public/liquidated_positions
{
"success": true,
"timestamp": 1702989203989,
"data": {
"meta": {
"total": 9,
"records_per_page": 25,
"current_page": 1
},
"rows": [
{
"timestamp": 1683802462092,
"liquidation_id": 29,
"transfer_amount_to_insurance_fund": 0,
"type": "liquidated",
"positions_by_perp": [
{
"symbol": "PERP_ETH_USDC",
"seq": 1730181536341943600,
"position_qty": 0,
"liquidator_fee": 0.015,
"cost_position_transfer": 0,
"transfer_price": 1860,
"insurance_fund_fee": 0.011999,
"abs_insurance_fund_fee": 0,
"abs_liquidator_fee": 0
}
]
}
]
}
}
Response
200 - application/json
Success
curl --request GET \
--url https://api-evm.orderly.org/v1/public/liquidated_positions
{
"success": true,
"timestamp": 1702989203989,
"data": {
"meta": {
"total": 9,
"records_per_page": 25,
"current_page": 1
},
"rows": [
{
"timestamp": 1683802462092,
"liquidation_id": 29,
"transfer_amount_to_insurance_fund": 0,
"type": "liquidated",
"positions_by_perp": [
{
"symbol": "PERP_ETH_USDC",
"seq": 1730181536341943600,
"position_qty": 0,
"liquidator_fee": 0.015,
"cost_position_transfer": 0,
"transfer_price": 1860,
"insurance_fund_fee": 0.011999,
"abs_insurance_fund_fee": 0,
"abs_liquidator_fee": 0
}
]
}
]
}
}