加密货币网络
获取指定加密货币的网络列表。
此 API 可无需任何安全标头即可公开访问以获取默认网络列表。
若使用具有 Read 权限的身份验证访问,返回结果将根据账户设置更加准确。
在公开访问环境下,depositEnable 和 withdrawEnable 的响应默认为 true。
- 总充值手续费为
max(depositFeeMin, (amount × depositFeeRate)) + (depositExtFees + depositExtFeeRate × amount)。 - 总提现手续费为
max(withdrawFeeMin, (amount × withdrawFeeRate)) + (withdrawExtFees + withdrawExtFeeRate × amount)。
注意:对于价格较低的加密货币,市场信息 API 使用 K/M/B 前缀显示并以对应数量进行交易(例如 K_PEIPEI)。然而,钱包相关 API 显示的是实际加密货币信息,因此请求和响应均使用原始加密货币名称(例如 PEIPEI)。
请求参数
| 名称 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| crypto | String | 是 | 加密货币,例如 BTC |
响应内容
| 名称 | 类型 | 描述 |
|---|---|---|
| data | Object[] |
example
GET
https://api.btse.com/public-api/wallet/v1/crypto/networksResponse
{
"success": true,
"code": 1,
"msg": "Success",
"time": 1624989977940,
"data": [
{
"network": "ERC20",
"name": "Ethereum (ERC20)",
"depositEnable": true,
"withdrawEnable": true,
"confirmationTime": 15,
"depositAmtMin": "0",
"depositFeeMin": "0",
"depositFeeRate": "0",
"depositExtFees": "0",
"depositExtFeeRate": "0",
"needAddressExtension": false,
"withdrawAmtMin": "36.41",
"withdrawFeeMin": "6.41",
"withdrawFeeRate": "0",
"withdrawExtFees": "0",
"withdrawExtFeeRate": "0"
},
{
"network": "RIPPLE",
"name": "Ripple",
"depositEnable": true,
"withdrawEnable": true,
"confirmationTime": 10,
"depositAmtMin": "0",
"depositFeeMin": "0",
"depositFeeRate": "0",
"depositExtFees": "0",
"depositExtFeeRate": "0",
"needAddressExtension": true,
"addressExtensionTypeName": "tag",
"withdrawAmtMin": "0.25",
"withdrawFeeMin": "20",
"withdrawFeeRate": "0",
"withdrawExtFees": "0",
"withdrawExtFeeRate": "0"
}
]
}