獲取幣種詳情

此接口,返回可交易幣種的貨幣詳細信息

HTTP請求

GET /api/v3/currencies/{currency}

請求示例

GET /api/v3/currencies/BTC

{
  "data" : {
    "isMarginEnabled" : true,
    "chains" : [
      {
        "chainName" : "BTC",
        "withdrawalMinFee" : "0.001",
        "withdrawalMinSize" : "0.0012",
        "withdrawFeeRate" : "0",
        "depositMinSize" : "0.0002",
        "isWithdrawEnabled" : true,
        "isDepositEnabled" : true,
        "preConfirms" : 1,
        "contractAddress" : "",
        "chainId" : "btc",
        "confirms" : 3
      },
      {
        "chainName" : "KCC",
        "withdrawalMinFee" : "0.00002",
        "withdrawalMinSize" : "0.0008",
        "withdrawFeeRate" : "0",
        "depositMinSize" : null,
        "isWithdrawEnabled" : true,
        "isDepositEnabled" : true,
        "preConfirms" : 20,
        "contractAddress" : "0xfa93c12cd345c658bc4644d1d4e1b9615952258c",
        "chainId" : "kcc",
        "confirms" : 20
      },
      {
        "chainName" : "BTC-Segwit",
        "withdrawalMinFee" : "0.0005",
        "withdrawalMinSize" : "0.0008",
        "withdrawFeeRate" : "0",
        "depositMinSize" : "0.0002",
        "isWithdrawEnabled" : false,
        "isDepositEnabled" : true,
        "preConfirms" : 2,
        "contractAddress" : "",
        "chainId" : "bech32",
        "confirms" : 2
      }
    ],
    "contractAddress" : null,
    "isDebitEnabled" : true,
    "fullName" : "Bitcoin",
    "precision" : 8,
    "currency" : "BTC",
    "name" : "BTC",
    "confirms" : null
  },
  "code" : "200000"
}
請求URL

此接口支持現貨URL

頻率限制

公有类权重:3

請求參數
請求參數 類型 是否必須 含義
currency String 路徑參數,幣種標識
chain String 針對一幣多鏈的幣種,可通過chain獲取幣種詳情。比如, USDT存在的鏈有 OMNI, ERC20, TRC20。
返回值
字段 含義
currency 幣種唯一標識,不會改變
name 幣種名,可變更
fullName 幣種全稱,可變更
precision 幣種精度
confirms 區塊鏈確認數
contractAddress 合約地址
isMarginEnabled 是否支持槓桿
isDebitEnabled 是否支持借貸
chains chain列表
chainId 幣種chain
chainName 幣種chain名字
depositMinSize 充值最小值
depositFeeRate 充值手續費率(部分幣種有此字段,默認為空)
withdrawalMinSize 提現最小值
withdrawalMinFee 提現最小手續費
isWithdrawEnabled 是否可提現
isDepositEnabled 是否可充值
confirms 區塊鏈確認數
preConfirms 提前上帳區塊確認數
withdrawFeeRate 提現手續費率
withdrawMaxFee 提現最大手續費(部分幣種有此字段,默認為空)