幣種列表
地址/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"
}
}
}