Subscribe
⏳ Limit
1 requests per 1 seconds per IP.
wss://api.bring.trade/public/ws
Request
{
"event": "subscribe",
"arg": [
{
"channel": "bt-allticker"
}
]
}
Response
{
"arg": {
"channel": "bt-allticker"
},
"data": [
{
"symbol": "BT_PERP_STRK_USD",
"lastPrice": "0.4242",
"markPrice": "0.4241",
"vol24h": "62038144.0484400",
"vol24v": "145605591.0",
"priceChangePercent": "-0.032832",
"ts": "1729072037848"
},{
"symbol": "BT_PERP_MTL_USD",
"lastPrice": "0.9899",
"markPrice": "0.9892",
"vol24h": "5148068.3215",
"vol24v": "5278767",
"priceChangePercent": "0.013411",
"ts": "1729072036962"
}
]
}
| Field | Type | Description |
|---|---|---|
| symbol | string | The trading pair or asset symbol |
| lastPrice | string | The most recent price. |
| markPrice | string | Mark Price |
| vol24h | string | The total trading volume (in quote asset, e.g., USD) in the last 24 hours. |
| vol24v | string | The total trading volume (in base asset, e.g., BTC/ETH) in the last 24 hours. |
| priceChangePercent | string | The percentage change in price over the last 24 hours. |
| ts | string | Timestamp |
Unsubscribe
Request
{
"event": "unsubscribe",
"arg": [
{
"channel": "bt-allticker"
}
]
}