Order Management
Get All Trades of Specific Order
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
- POSTCreate Order
- POSTBatch Create Order
- POSTCreate Algo Order
- PUTEdit Order
- PUTEdit Algo Order
- DELCancel Order
- DELCancel Algo Order
- DELCancel Order By client_order_id
- DELCancel Algo Order By client_order_id
- DELCancel All Pending Algo Orders
- DELCancel All Pending Orders
- POSTCancel All After
- DELBatch Cancel Orders
- DELBatch Cancel Orders By client_order_id
- GETGet Order by order_id
- GETGet Order by client_order_id
- GETGet Algo Order by order_id
- GETGet Algo Order by client_order_id
- GETGet Orders
- GETGet Algo Orders
- GETGet Trades
- GETGet Trade
- GETGet All Trades of Specific Order
- GETGet All Trades of Specific Algo Order
- POST
- 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
Order Management
Get All Trades of Specific Order
Limit: 10 requests per 1 second
GET /v1/order/:order_id/trades
Get specific trades of an order by order_id
.
GET
/
v1
/
order
/
{order_id}
/
trades
curl --request GET \
--url https://api-evm.orderly.org/v1/order/{order_id}/trades \
--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": {
"rows": [
{
"id": 2,
"symbol": "PERP_BTC_USDC",
"fee": 0.0001,
"fee_asset": "USDC",
"side": "BUY",
"order_id": 1,
"executed_price": 123,
"executed_quantity": 0.05,
"executed_timestamp": 1567382401000,
"is_maker": 1,
"realized_pnl": 0,
"match_id": ""
}
]
}
}
Headers
Path Parameters
Response
200 - application/json
OK
fee. use Base as unit when BUY, use Quote as unit when SELL
curl --request GET \
--url https://api-evm.orderly.org/v1/order/{order_id}/trades \
--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": {
"rows": [
{
"id": 2,
"symbol": "PERP_BTC_USDC",
"fee": 0.0001,
"fee_asset": "USDC",
"side": "BUY",
"order_id": 1,
"executed_price": 123,
"executed_quantity": 0.05,
"executed_timestamp": 1567382401000,
"is_maker": 1,
"realized_pnl": 0,
"match_id": ""
}
]
}
}