跳到主要内容
版本:V3(BETA)

获取币种信息

  • GET /api/v3/coins

权重(IP): 5

请求参数

NONE

请求示例

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

返回参数

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

返回示例

[
{
"coin": "USDT",
"name": "USDT",
"depositAllEnable": true,
"withdrawAllEnable": true,
"networkList": [
{
"network": "BEP20(BSC)",
"coin": "USDT",
"withdrawIntegerMultiple": 1e-8,
"isDefault": false,
"depositEnable": true,
"withdrawEnable": true,
"depositDesc": null,
"withdrawDesc": null,
"name": "BEP20(BSC)",
"withdrawFee": "0.000002",
"withdrawMin": "0.00001",
"withdrawInternalMin": null,
"depositDust": "0.0001",
"minConfirm": 11,
"withdrawTag": false,
"contractAddressUrl": "https://bscscan.com/token/",
"contractAddress": "0x55d39832789f99059ff7545246999027b3197955"
}
]
}
]