Liquidations
Get Liquidated Positions of Account
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 of Account
Limit: 10 requests per 1 second per IP address
GET /v1/liquidations
GET
/
v1
/
liquidations
curl --request GET \
--url https://api-evm.orderly.org/v1/liquidations \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"meta": {
"total": 9,
"records_per_page": 25,
"current_page": 1
},
"rows": [
{
"liquidation_id": 101,
"timestamp": 1663313562090,
"transfer_amount_to_insurance_fund": 0,
"positions_by_perp": [
{
"abs_liquidator_fee": 1.152279,
"cost_position_transfer": 65.84448,
"liquidator_fee": 0.0175,
"position_qty": 41.6,
"symbol": "PERP_NEAR_USDC",
"transfer_price": 1.5828
}
]
}
]
}
}
Headers
Query Parameters
liquidation_id
/time
return the designed liquidation_id only
Response
200 - application/json
OK
curl --request GET \
--url https://api-evm.orderly.org/v1/liquidations \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"meta": {
"total": 9,
"records_per_page": 25,
"current_page": 1
},
"rows": [
{
"liquidation_id": 101,
"timestamp": 1663313562090,
"transfer_amount_to_insurance_fund": 0,
"positions_by_perp": [
{
"abs_liquidator_fee": 1.152279,
"cost_position_transfer": 65.84448,
"liquidator_fee": 0.0175,
"position_qty": 41.6,
"symbol": "PERP_NEAR_USDC",
"transfer_price": 1.5828
}
]
}
]
}
}