Orderbook Maker
orderbook_maker Channel
Monitor orderbook events specifically for a market maker's orders. Provides an initial snapshot of all existing maker orders followed by real-time updates.
This channel replaces the previous maker filtering option in orderbook_options and orderbook_perps channels.
Subscribe
| Parameter | Required | Description |
|---|---|---|
maker | Yes | Ethereum address of the market maker (42 characters with 0x prefix) |
pair | No | Trading pair filter ("BTC_USDC", "ETH_USDC", or "ARB_USDC") |
All orders for a maker:
{
"channel": "orderbook_maker",
"query": {
"maker": "0x1234567890abcdef1234567890abcdef12345678"
}
}Filtered by trading pair:
{
"channel": "orderbook_maker",
"query": {
"maker": "0x1234567890abcdef1234567890abcdef12345678",
"pair": "BTC_USDC"
}
}Events
| Event | Description |
|---|---|
ob_maker_orders | Initial snapshot containing all active orders from the maker |
post_order | New order posted by the maker |
cancel_order | Order cancelled by the maker |
update_order | Order fill status updated |
See Orderbook Events for post_order, cancel_order, and update_order event schemas.
Notes
- Returns both options and perpetual orders for the specified maker
- Initial snapshot event type is
ob_maker_orderscontaining all active orders - After the initial snapshot, you'll receive real-time
post_order,cancel_order, andupdate_orderevents for that maker's activity - Designed for market makers to efficiently monitor their own order activity
Updated about 15 hours ago
