获取币种信息
- GET
/api/v3/coins
权重(IP): 5
请求参数
NONE
请求示例
curl "https://api-spot.weex.com/api/v3/coins"
返回参数
| 字段名 | 类型 | 说明 |
|---|---|---|
| coin | String | 币种符号,例如 BTC。 |
| name | String | 币种全称。 |
| depositAllEnable | Boolean | 是否允许所有网络充值。 |
| withdrawAllEnable | Boolean | 是否允许所有网络提现。 |
| trading | Boolean | 是否可交易。 |
| brokered | Boolean | 是否对经纪商开放。 |
| networkList | Array<Object> | 支持的网络信息。 |
| → network | String | 网络名称,例如 ERC20。 |
| → isDefault | Boolean | 是否为默认网络。 |
| → depositEnable | Boolean | 是否允许充值。 |
| → withdrawEnable | Boolean | 是否允许提现。 |
| → withdrawFee | String | 提现手续费。 |
| → withdrawMin | String | 最小提现数量。 |
| → withdrawIntegerMultiple | String | 提现数量需满足的整数倍限制。 |
| → minConfirm | Integer | 充值所需最小确认数。 |
| → withdrawTag | Boolean | 是否需要标签/备注。 |
| → depositDust | String | 充值尘埃阈值。 |
| → contractAddress | String | 合约地址(若适用)。 |
| → contractAddressUrl | String | 合约地址区块浏览器链接。 |
| → depositDesc / withdrawDesc | String | 充值/提现关闭时的提示信息。 |
返回示例
[
{
"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"
}
]
}
]