Get Market Depth

This API retrieves the order book for a specified trading pair, including the current bids and asks.

GET https://nami.exchange/api/v3/spot/depth

Headers

Name
Value

Content-Type

application/json

Query Parameters

Name
Type
Description
Required
Example

symbol

string

Trading pair symbol

No

BTCUSDT

Response

{
  "status": "ok",
  "bid": [
    [43000.5, 1.5],
    [42950.0, 2.0]
  ],
  "asks": [
    [43050.5, 1.0],
    [43100.0, 2.5]
  ]
}

Last updated