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"
}
}
Field | Type | Description |
---|---|---|
price | string | Last Price |
markPrice | string | Mark Price |
indexPrice | string | Index Price |
fundingRate | string | Funding Rate |
nextFundTime | string | The time of the next funding rate payment. |
ts | string | Timestamp |
Unsubscribe
Request
{
"event": "unsubscribe",
"arg": [
{
"symbol": "BT_PERP_BTC_USD",
"channel": "bt-markprice"
}
]
}