Get Real-time market depth

This WebSocket endpoint allows clients to subscribe and receive real-time updates on the market depth for a specific trading pair.

Connect to WebSocket

Path /market/ws/:pair

Headers

Name
Value

X-API-KEY

<YOUR_API_KEY>

Path Parameter

Name
Type
Description

pair

string *

The targeted trading pair. E.g. "ADAUSDX"

Response

// Downstream
{
  "side": "asks", // enum["asks","bids"]
  "price": "69",
  "Volume": 1000
}

Last updated