Subscribe
⏳ Limit
1 requests per 1 seconds per IP.
wss://api.bring.trade/public/ws
Request
{
"event": "subscribe",
"arg": [
{
"symbol": "BT_PERP_BTC_USD",
"channel": "bt-ticker"
}
]
}
Response
{
"arg": {
"channel": "bt-ticker",
"symbol": "BT_PERP_BTC_USD"
},
"data": {
"lastPrice": "67353.4",
"low24h": "64771.7",
"high24h": "67953.7",
"open24h": "65656.5",
"vol24h": "28266888006.54",
"vol24v": "425161.599",
"priceChangePercent": "0.025845",
"ts": "1729072037850"
}
}
| Field | Type | Description |
|---|---|---|
| symbol | string | The trading pair or asset symbol |
| lastPrice | string | The most recent price. |
| low24h | string | The lowest price in the last 24h. |
| high24h | string | The highest price in the last 24h. |
| open24h | string | The opening price 24h ago. |
| 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": [
{
"symbol": "BT_PERP_BTC_USD",
"channel": "bt-ticker"
}
]
}