API Reference

Ticker

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"
    }
}
FieldTypeDescription
symbolstringThe trading pair or asset symbol
lastPricestringThe most recent price.
low24hstringThe lowest price in the last 24h.
high24hstringThe highest price in the last 24h.
open24hstringThe opening price 24h ago.
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": [
        {
            "symbol": "BT_PERP_BTC_USD",
            "channel": "bt-ticker"
        }
    ]
}