GET
/
v1
/
trade
/
{trade_id}
curl --request GET \
  --url https://api-evm.orderly.network/v1/trade/{trade_id} \
  --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": {
    "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": 123
  }
}

Headers

orderly-timestamp
string
required
orderly-account-id
string
required
orderly-key
string
required
orderly-signature
string
required

Path Parameters

trade_id
number
required

id of the trade

Response

200 - application/json
success
boolean
required
timestamp
integer
data
object
required