跳到主要内容
版本:V3

获取币种信息

  • GET /api/v3/coins

权重(IP): 5

请求参数

NONE

请求示例

curl "https://api-spot.weex.com/api/v3/coins"

返回参数

字段名类型说明
coinString币种符号,例如 BTC
nameString币种全称。
depositAllEnableBoolean是否允许所有网络充值。
withdrawAllEnableBoolean是否允许所有网络提现。
tradingBoolean是否可交易。
brokeredBoolean是否对经纪商开放。
networkListArray<Object>支持的网络信息。
→ networkString网络名称,例如 ERC20
→ isDefaultBoolean是否为默认网络。
→ depositEnableBoolean是否允许充值。
→ withdrawEnableBoolean是否允许提现。
→ withdrawFeeString提现手续费。
→ withdrawMinString最小提现数量。
→ withdrawIntegerMultipleString提现数量需满足的整数倍限制。
→ minConfirmInteger充值所需最小确认数。
→ withdrawTagBoolean是否需要标签/备注。
→ depositDustString充值尘埃阈值。
→ contractAddressString合约地址(若适用)。
→ contractAddressUrlString合约地址区块浏览器链接。
→ depositDesc / withdrawDescString充值/提现关闭时的提示信息。

返回示例

[
{
"coin": "USDT",
"name": "Tether",
"depositAllEnable": true,
"withdrawAllEnable": true,
"trading": true,
"networkList": [
{
"network": "ERC20",
"isDefault": true,
"depositEnable": true,
"withdrawEnable": true,
"withdrawFee": "5",
"withdrawMin": "10",
"withdrawIntegerMultiple": "1",
"minConfirm": 12,
"withdrawTag": false,
"depositDust": "0.1"
}
]
}
]