For the complete documentation index, see llms.txt. This page is also available as Markdown.

Orders

Orders data

This guide explains how to use the WebSocket API to subscribe to Orders data updates via the /orders channel.


Overview

The WebSocket API allows clients to receive real-time market data updates. Subscribing to the /orders channel provides updates for Orders processed by OrderBook(s).


Channel

/orders/*

  • Subscribe to get notification about orders for all markets.

/orders/bytradingpair/{market symbol}/*

  • Subscribe to get order data from specific markets

  • Client may be subscribed to many markets at the same time.

/orders/bywallet/{wallet address}/*

  • Subscribe to get order data from specific wallet address

  • Client may be subscribed to many markets at the same time.

/orders/bywallet/{wallet address}/bytradingpair/{market symbol}

  • Subscribe to get order data from specific wallet and market

  • Client may be subscribed to many markets at the same time.


Subscription


Market Data Model

Data model definition in progress.

Last updated