Fill Channel
Description
Subscribe to trade details information
Request Parameters
| Parameter | Type | Required | Description | 
|---|---|---|---|
| event | String | Yes | Operation: subscribe, unsubscribe | 
| channel | String | Yes | Channel name | 
Request Example
{  
  "event": "subscribe",  
  "channel": "fill"  
}  
Response Parameters
| Field | Type | Description | 
|---|---|---|
| event | String | Operation: subscribed, unsubscribed | 
| channel | String | Channel name | 
Subscription Response Example
{  
  "event": "subscribed",  
  "channel": "fill"  
}  
Push Data Parameters
| Field | Type | Description | 
|---|---|---|
| id | String | Unique identifier | 
| symbolName | String | Trading pair name | 
| orderId | String | Parent order ID | 
| baseCoin | String | Base currency | 
| quoteCoin | String | Quote currency | 
| orderSide | String | Buy/Sell direction | 
| fillSize | String | Actual executed quantity | 
| fillValue | String | Actual executed value | 
| fillFee | String | Actual transaction fee (exact) | 
| direction | String | Execution direction | 
| createdTime | String | Creation time | 
| updatedTime | String | Update time | 
Push Response Example
{
  "type": "trade-event",
  "channel": "fill",
  "msg": {
    "msgEvent": "OrderUpdate",
    "version": 38,
    "data": {
      "orderFillTransaction": [
        {
          "id": "625138763437179034",
          "symbolName": "BTCUSDT_SPBL",
          "baseCoin": "BTC",
          "quoteCoin": "USDT",
          "orderId": "625138763307155610",
          "orderSide": "BUY",
          "fillSize": "0.000952",
          "fillValue": "99.9676160",
          "fillFee": "0.00000095",
          "direction": "TAKER",
          "createdTime": "1749044695720",
          "updatedTime": "1749044695720"
        }
      ]
    },
    "time": 1749044695720
  },
  "event": "payload"
}