Order Book Information

This API retrieves order book (depth) data for a specific trading pair on NAO Futures Plus – Nami Exchange, including current bid and ask price levels.

GET https://nfp-gateway.nami.exchange/public/api/v1/price/depth

Headers

Header
Description

Content-Type

application/json

Query Parameters

Parameter
Type
Description
Required
Example

symbol

string

Token

False

BTCUSDT

Response

{
  "status": "ok",
  "code": 0,
  "message": "Depth data retrieved successfully",
  "data": {
    "lastUpdateId": 42080989,
    "bids": [
      [87247.8, 0.061],
      [87247.7, 1.667],
      [87247.6, 0.349],
    ],
    "asks": [
      [93844.4, 1.203],
      [93846.1, 0.119],
      [93867.8, 2.575],
    ],
    "symbol": "btcusdt"
  }
}

Last updated