Skip to content

查询cointiger站支持的所有币种

CoinTiger-API edited this page Jun 14, 2019 · 3 revisions

GET {Trading_Macro_v2}/currencys 查询cointiger站支持的所有币种

请求参数:

(无)

响应数据:

currency list

响应例子:

{
    "code": "0",
    "msg": "suc",
    "data": {
        "bitcny-partition": [
            {
                "baseCurrency": "btc",     // 基础币种
                "quoteCurrency": "bitcny", // 计价币种
                "pricePrecision": 2,       // 价格精度位数(0为个位)
                "amountPrecision": 4,      // 数量精度位数(0为个位)
                "withdrawFeeMin": 0.0005,  // 提币手续费最小值
                "withdrawFeeMax": 0.005,   // 提币手续费最大值
                "withdrawOneMin": 0.01,    // 单笔提现最小限制
                "withdrawOneMax": 10,      // 单笔提现最大限制
                "depthSelect": {           // 深度选择配置
                    "step0": "0.01",       // step0, step1, step2,(合并深度0-2);
                    "step1": "0.1",
                    "step2": "1"
                }
            },
            ...
        ]
    }