查询支持的币种
请求
GET https://custody-example-url/custody/v1/api/integrated/coins
参数
无
响应
字段 |
类型 |
描述 |
currency |
String |
币种名称 |
coin_name |
String |
代币名称(如:USDT币种下有代币USDTERC/USDTTRC/USDTOMNI) |
min_recharge |
Integer |
最低充值额度 |
min_withdraw |
Integer |
最低提币额度 |
deposit_confirms |
Integer |
充值确认块高度 |
withdraw_confirms |
Integer |
提币确认块高度 |
fee |
Integer |
手续费 |
recharge_status |
Boolean |
是否允许充值(true-支持,false-不支持) |
withdraw_status |
Boolean |
是否允许提现(true-支持,false-不支持) |
Response Example
{
"code": 0,
"message": "string",
"data": [
{
"currency": "string",
"coin_name": "string",
"min_recharge": 0,
"min_withdraw": 0,
"deposit_confirms": 0,
"withdraw_confirms": 0,
"fee": 0,
"recharge_status": true,
"withdraw_status": true
}
],
"successful": true
}