For the complete documentation index, see llms.txt. This page is also available as Markdown.

Products

Query Single Product

get
/info/single
Query parameters
symbolinteger · int64Required

Symbol code

Responses
200

Product metadata

application/json
codeintegerOptional
get/info/single
const resp = await fetch(`${BASE_URL}/info/single?symbol=1`);
200

Product metadata

{
  "code": 1,
  "data": {
    "md5Checksum": "text",
    "perpProducts": [
      {
        "name": "text",
        "symbol": "text",
        "code": "text",
        "currencyCode": 1,
        "maxLeverage": 1,
        "pricePrecision": 1,
        "qtyPrecision": 1,
        "tickSize": "text",
        "stepSize": "text",
        "maxOrderQty": 1,
        "maxSlippagePct": "text",
        "maxPositionNtnl": 1,
        "fundingInterval": 1,
        "productType": "text",
        "listStatus": "text",
        "onlyIsolated": true,
        "baseCurrency": "text",
        "quoteCurrency": "text",
        "settleCurrency": "text",
        "minOrderValue": "text",
        "defaultMakerFeeRate": "text",
        "defaultTakerFeeRate": "text"
      }
    ],
    "marginTables": [
      {
        "tableId": 1,
        "riskLimitVo": [
          {
            "minimumValue": "text",
            "maintainMarginRatio": "text",
            "maxLeverage": 1
          }
        ]
      }
    ],
    "currencies": [
      {
        "name": "text",
        "currency": "text",
        "code": 1,
        "walletPrecision": 1,
        "displayPrecision": 1
      }
    ]
  }
}

Query All Products

get
/info/public/product-meta
Query parameters
listStatusintegerOptional

Filter by listing status

Responses
200

All product metadata

application/json
codeintegerOptional
get/info/public/product-meta
const resp = await fetch(`${BASE_URL}/info/public/product-meta`);
200

All product metadata

{
  "code": 1,
  "data": {
    "md5Checksum": "text",
    "perpProducts": [
      {
        "name": "text",
        "symbol": "text",
        "code": "text",
        "currencyCode": 1,
        "maxLeverage": 1,
        "pricePrecision": 1,
        "qtyPrecision": 1,
        "tickSize": "text",
        "stepSize": "text",
        "maxOrderQty": 1,
        "maxSlippagePct": "text",
        "maxPositionNtnl": 1,
        "fundingInterval": 1,
        "productType": "text",
        "listStatus": "text",
        "onlyIsolated": true,
        "baseCurrency": "text",
        "quoteCurrency": "text",
        "settleCurrency": "text",
        "minOrderValue": "text",
        "defaultMakerFeeRate": "text",
        "defaultTakerFeeRate": "text"
      }
    ],
    "marginTables": [
      {
        "tableId": 1,
        "riskLimitVo": [
          {
            "minimumValue": "text",
            "maintainMarginRatio": "text",
            "maxLeverage": 1
          }
        ]
      }
    ],
    "currencies": [
      {
        "name": "text",
        "currency": "text",
        "code": 1,
        "walletPrecision": 1,
        "displayPrecision": 1
      }
    ]
  }
}

Last updated