API Reference

All Tickers

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"
        }
      ]
}
FieldTypeDescription
symbolstringThe trading pair or asset symbol
lastPricestringThe most recent price.
markPricestringMark Price
vol24hstringThe total trading volume (in quote asset, e.g., USD) in the last 24 hours.
vol24vstringThe total trading volume (in base asset, e.g., BTC/ETH) in the last 24 hours.
priceChangePercentstringThe percentage change in price over the last 24 hours.
tsstringTimestamp

Unsubscribe

Request

{
    "event": "unsubscribe",
    "arg": [
        { 
            "channel": "bt-allticker"
        }
    ]
}