Public Trade Channel
Description
Platform trade channel (taker orders)
Request Parameters
| Parameter | Type | Required | Description | 
|---|---|---|---|
| event | String | Yes | Operation: subscribe, unsubscribe | 
| channel | String | Yes | Channel name. Product ID e.g., trades.BTCUSDT_SPBL | 
Request Example
{  
  "event": "subscribe",  
  "channel": "trades.BTCUSDT_SPBL"  
}  
Response Parameters
| Field | Type | Description | 
|---|---|---|
| event | String | Operation: subscribed, unsubscribed | 
| channel | String | Channel name | 
Subscription Response Example
{  
  "event": "subscribed",  
  "channel": "trades.BTCUSDT_SPBL"  
}  
Push Data Parameters
| Field | Type | Description | 
|---|---|---|
| event | String | Push data action | 
| channel | String | Channel name | 
| data | List | Subscribed data | 
| >time | String | Trade time | 
| >price | String | Trade price | 
| >size | String | Trade quantity | 
| >value | String | Trade amount | 
| >buyerMaker | String | Market flag (internal/external) | 
Push Response Example
{
  "event": "payload",
  "channel": "trades.BTCUSDT_SPBL",
  "data": [
    {
      "time": "1747131727502",
      "price": "103337.5",
      "size": "0.01600",
      "value": "1653.400000",
      "buyerMaker": false
    }
  ]
}