POST
https://prv.gateway.indexer.biya.io
/
injective_derivative_exchange_rpc.InjectiveDerivativeExchangeRPC
/
StreamOrderbookUpdate
StreamOrderbookUpdate
curl --request POST \
  --url https://prv.gateway.indexer.biya.io/injective_derivative_exchange_rpc.InjectiveDerivativeExchangeRPC/StreamOrderbookUpdate \
  --header 'Content-Type: application/json' \
  --data '
{
  "market_ids": [
    {}
  ]
}
'
Stream live level updates of selected derivative market orderbook. This endpoint sends incremental updates (only changed price levels) rather than full snapshots.
This is a streaming endpoint that requires WebSocket or Server-Sent Events support.
market_ids
array
List of market IDs for orderbook streaming. Empty array means ‘ALL’ derivative markets (optional)

cURL Example

Using grpcurl:
grpcurl -plaintext -d '{"market_ids": ["0x..."]}' \
  localhost:8088 \
  injective_derivative_exchange_rpc.InjectiveDerivativeExchangeRPC/StreamOrderbookUpdate
Using websocat:
echo '{"market_ids": ["0x..."]}' | websocat ws://localhost:8088/injective_derivative_exchange_rpc.InjectiveDerivativeExchangeRPC/StreamOrderbookUpdate