One Trading API
REST APIWebSocket API
REST APIWebSocket API
  1. Trading
  • Introduction
  • Authenticate
  • Subscribe
  • Ping / Pong
  • Trading
    • Introduction
    • Dead Man Switch (Auto Cancellation)
    • Create Order
    • Cancel All Orders
    • Cancel Order by Client ID
    • Cancel Order by Order ID
    • Margin Update
    • Settlement
    • Funding Payment
    • Order Booked
    • Order Rejected
    • Order Closed
    • Trade Executed
    • Order Fully Filled
    • Move Order
    • Balance Adjustment
  • Orderbook
    • Introduction
    • Orderbook Snapshot
    • Orderbook Update
  • Price Ticks
    • Introduction
    • Price Tick
  • Book Ticker
    • Introduction
    • Book Tick
  1. Trading

Order Fully Filled

Spot#

{
  "channel_name": "TRADING",
  "type": "DONE", // DEPRECATED
  "event": "ORDER",
  "status": "FILLED_FULLY",
  "instrument_code": "BTC_EUR",
  "client_id": "72a56f6c-b323-455a-9182-229bbc1760a2",
  "order_id": "a3baff90-c763-4572-037d-56613d0ca6ba",
  "time": 1743122825374527200,
  "side": "BUY",
  "order_book_sequence": 70467252555,
  "remaining": "0",
  "amount": "0.00185",
  "price_avg": "80846.39",
  "cum_quote_amount": "149.5658215",
  "bals": [
    {
      "c": "BTC",
      "a": "10.00796032"
    },
    {
      "c": "EUR",
      "a": "1087951.20272462"
    }
  ],
  "lckd_bals": [
    {
      "c": "BTC",
      "a": "0"
    },
    {
      "c": "EUR",
      "a": "0"
    }
  ]
}
SpotFilledFully

Futures#

{
  "channel_name": "TRADING",
  "type": "DONE", // DEPRECATED
  "status": "FILLED_FULLY",
  "event": "ORDER",
  "instrument_code": "BTC_EUR_P",
  "client_id": "01f133fe-86d9-418f-8b52-86c71f1035d5",
  "order_id": "4539821b-df35-4d6a-21ed-ad1d6efc41fe",
  "time": 1743121323027671300,
  "side": "SELL",
  "order_book_sequence": 70467142629,
  "remaining": "0",
  "amount": "0.00185",
  "price_avg": "80667.3",
  "cum_quote_amount": "149.234505",
  "margin_used": "38.2479412",
  "liquidation": true, // This is optional, and only present if the order is part of a liquidation event
  "bals": [
    {
      "c": "EUR",
      "a": "962.73779864"
    }
  ]
}
FuturesFilledFully

Previous
Trade Executed
Next
Move Order
Built with