Orderbook
Order book feed for a currency pair.
The order-book channel generates a book event when a order is added, updated, deleted from the orderbook.
Subscribe with Pusher
Subscribe Request Payload
Examples
Payload
Name
Type
Description
channel
string
The name of the channel
type
string
Type of the event
data
array
The payload of trade data
data.asks
string
Sell order data. Empty array if order side is Buy
data.asks.price
decimal
Order price
data.asks.qty
decimal
Order volume
data.bids
object
Buy order data. Empty array if the order side is sell.
data.bids.price
decimal
Order price
data.bids.qty
decimal
Order Volume
data.symbol
string
Example: "NIZA/USDT" The symbol of the currency pair.
Example of the Payload
Last updated