Get Market Depth

GET /market/depth

This endpoint provides the depth of the market for a specific trading pair. It returns an order book containing bid and ask prices along with their corresponding volumes. The order book is sorted with the highest bid and lowest ask prices at the top, providing a view into the market's liquidity and depth for both buyers and sellers.

Headers

Name
Value

X-API-KEY

<YOUR_API_KEY>

Query parameters

Name
Type
Description

pair

string *

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

Response

// Response Type

MarketDepth:{
  price: float
  quantity: float
}
{
 "bids": []MarketDepth,
 "asks": []MarketDepth
}

Last updated