API Reference

Mark Price

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-markprice"
        }
    ]
}

Response

{
    "arg": {
        "channel": "bt-markprice",
        "symbol": "BT_PERP_BTC_USD"
    },
    "data": {
        "price": "67353.4",
        "markPrice": "67352.00097579",
        "indexPrice": "67377.58617021",
        "fundingRate": "0.00009081",
        "nextFundTime": "1729094400000",
        "ts": "1729072038000"
    }
}

FieldTypeDescription
pricestringLast Price
markPricestringMark Price
indexPricestringIndex Price
fundingRatestringFunding Rate
nextFundTimestringThe time of the next funding rate payment.
tsstringTimestamp

Unsubscribe

Request

{
    "event": "unsubscribe",
    "arg": [
        {
            "symbol": "BT_PERP_BTC_USD",
            "channel": "bt-markprice"
        }
    ]
}