Subscriptions
Last Price
Inverse futures last trade price updates
Public · 2 fields
Topic futures/inverse/btc_usd/lastPrice
Inverse futures last trade price updates
Public topic — anyone connected to the WebSocket can subscribe, no API key needed.
Subscribe
Subscribe by calling the subscribe method with this topic.
Request
{
"jsonrpc": "2.0",
"id": 1,
"method": "subscribe",
"params": {
"topics": [
"futures/inverse/btc_usd/lastPrice"
]
}
}Payload
Each notification carries the fields below in params.data.
time*numberlastPrice*numberExample notification
The server pushes the JSON-RPC notification below for every event on this topic.
Notification
{
"jsonrpc": "2.0",
"method": "subscription",
"params": {
"topic": "futures/inverse/btc_usd/lastPrice",
"data": {
"time": 0,
"lastPrice": 0
}
}
}