跳转至

币种列表

地址/openApi/market/currencies

接收参数

提交方式: GET

示例

curl -d /openApi/market/currencies

返回参数

参数名 是否必填 类型 示例 说明
errno int 0 状态码
errmsg success success 状态信息
result list 见示例 列表

result 参数说明

参数名 是否必需 类型 示例 说明
name string bitcoin 币种全称
canWithdraw string true 是否可提
canDeposit string true 是否可充
minWithdraw string 0.0000001 最小提币数量
maxWithdraw string 10000 最大提币数量
makerFee string 0.002 挂单手续费,取值范围0~1之间,如(0.1为10%)
takerFee string 0.002 吃单手续费,取值范围0~1之间,如(0.01为1%)

返回示例

JSON
{
    "errno":0,
    "errmsg":"success",
    "result":{
        "BTC":{
            "name":"bitcoin",
            "canWithdraw":"true",
            "canDeposit":"false",
            "minWithdraw":"0.0000001",
            "maxWithdraw":"10000",
            "makerFee":"0.002",
            "takerFee":"0.002"
        },
        "ETH":{
            "name":"ethereum",
            "canWithdraw":"true",
            "canDeposit":"true",
            "minWithdraw":"0.0000001",
            "maxWithdraw":"10000",
            "makerFee":"0.002",
            "takerFee":"0.002"
        }
    }
}