Liquidations
Claim Insurance Fund
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
Claim Insurance Fund
Limit: 5 requests per 1 second
POST /v1/claim_insurance_fund
POST
/
v1
/
claim_insurance_fund
curl --request POST \
--url https://api.orderly.org/v1/claim_insurance_fund \
--header 'Content-Type: application/json' \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>' \
--data '{
"claim_id": 123,
"symbol": "<string>",
"qty_request": 123,
"limit_price": {
"symbol": 123
}
}'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"liquidation_id": 101,
"timestamp": 1663313562090,
"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
Body
application/json
Response
200 - application/json
OK
The response is of type object
.
curl --request POST \
--url https://api.orderly.org/v1/claim_insurance_fund \
--header 'Content-Type: application/json' \
--header 'orderly-account-id: <orderly-account-id>' \
--header 'orderly-key: <orderly-key>' \
--header 'orderly-signature: <orderly-signature>' \
--header 'orderly-timestamp: <orderly-timestamp>' \
--data '{
"claim_id": 123,
"symbol": "<string>",
"qty_request": 123,
"limit_price": {
"symbol": 123
}
}'
{
"success": true,
"timestamp": 1702989203989,
"data": {
"liquidation_id": 101,
"timestamp": 1663313562090,
"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
}
]
}
}