Get Symbol Configuration Information

This API retrieves the configuration and metadata of a trading pair on NAO Futures Plus – Nami Exchange.

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

Headers

Header
Description

Content-Type

application/json

Query Parameters

Parameter
Type
Description
Required
Example

Broker

string

exchange system identifier

True

NAO_PLUS

symbol

string

Token

True

BTCUSDT

Response

{
  "status": "ok",
  "code": 0,
  "message": "Symbol info data retrieved successfully",
  "data": {
    "symbol": "BTCUSDT",
    "description": "BTCUSDT",
    "minmov": 1,
    "minmov2": 0,
    "pricescale": 10,
    "has_dwm": true,
    "has_intraday": true,
    "has_daily": true,
    "force_session_rebuild": true,
    "has_weekly_and_monthly": false,
    "has_no_volume": true,
    "intraday_multipliers": [
      "1",
      "60"
    ],
    "type": "bitcoin",
    "ticker": "BTCUSDT",
    "timezone": "UTC",
    "session": "24x7",
    "supported_resolution": [
      "1",
      "5",
      "15",
      "60",
      "240",
      "1D",
      "1W",
      "1M"
    ],
    "data_status": "streaming",
    "exchange": "NAO_PLUS",
    "volume_precision": 5
  }
}

Last updated