Market depth streams
/market/ws/depth/:symbol?api_key=<your_api_key>
This websocket will feed notifications for
newly created orders that exists on the order book
Query params
Name
Value
api_key
<your_api_key>
Stream Response
// exmaple response for market depth
{
type: "Market",
sub_type: "market_depth",
side: "buy",
price: "0.77",
quantity: 120
}
Last updated