Skip to main content

Diff Book Depth Streams

Stream Description

Bids and asks, pushed every 500 milliseconds, 100 milliseconds (if existing)

URL PATH

/public

Stream Name

<symbol>@depth@100ms<symbol>@depth@500ms

Update Speed

100ms500ms

Response Example

{
"e": "depthUpdate", // event type
"E": 1762866729459, // event time
"T": 1762866729358, // transaction time
"s": "BTC-251123-126000-C", // Option symbol
"U": 465, // First update ID in event
"u": 465, // Final update ID in event
"pu": 464, // Final update Id in last stream(ie `u` in last stream)
"b": [ // Buy order
[
"1100.000", // Price
"0.6000" // quantity
]
],
"a": [ // Sell order
[
"1300.000",
"0.6000"
]
]
}