Price

Mark price and index price for futures pairs.

Two real-time price channels are available, both futures only.

ChannelDescription
MARK_PRICEThe mark price used for PnL calculation and liquidation
INDEX_PRICEThe index price derived from spot prices across exchanges

MARK_PRICE

Subscribe

{
    "event": "subscribe",
    "arg": [{ "channel": "MARK_PRICE", "sym": "BINANCE_PERP_BTC_USDT" }]
}

Push Data

{
    "arg": { "channel": "MARK_PRICE", "sym": "BINANCE_PERP_BTC_USDT" },
    "data": [{ "markpx": "70277.1", "ts": "1774331699001" }]
}
FieldDescription
markpxMark price
tsTimestamp (ms)

INDEX_PRICE

Subscribe

{
    "event": "subscribe",
    "arg": [{ "channel": "INDEX_PRICE", "sym": "BINANCE_PERP_BTC_USDT" }]
}

Push Data

{
    "arg": { "channel": "INDEX_PRICE", "sym": "BINANCE_PERP_BTC_USDT" },
    "data": [{ "indexpx": "70306.14565217", "ts": "1774331699001" }]
}
FieldDescription
indexpxIndex price
tsTimestamp (ms)