Trades

Trades data

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


Overview

The WebSocket API allows clients to receive real-time market data updates. Subscribing to the /trades channel provides updates for market ticker data, including prices, bids, asks, and quantities.


Channel

/trades/*

  • Subscribe to get notification about trades for all markets.

/trades/bytradingpair/{market symbol}/*

  • Subscribe to get trades data from specific markets

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

/trades/bywallet/{wallet address}/*

  • Subscribe to get trades data from specific wallet ()

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

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

  • Subscribe to get trades 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