Get Supported Digital Assets
Request
GET https://custody-example-url/custody/v1/api/integrated/coins
Parameters
N/A
Response
Field |
Type |
Description |
currency |
String |
Asset name |
coin_name |
String |
Token name(Example:USDTTRC, USDTERC, USDTOMNI are all included in USDT Asset) |
min_recharge |
Integer |
Minimum deposit amount |
min_withdraw |
Integer |
Minimum withdrawal amount |
deposit_confirms |
Integer |
Block height required for deposit confirmation |
withdraw_confirms |
Integer |
Block height required for withdrawal confirmation |
fee |
Integer |
Fee |
recharge_status |
Boolean |
Is it allow to deposit? (1-Yes, 0-No) |
withdraw_status |
Boolean |
Is it allow to withdraw? (1-Yes, 0-No) |
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
}