Get Transfer Currencies
Get Transfer Currencies
Get supported currencies for internal transfer
For security reasons, please contact customer support to enable internal transfer permissions before using this API.
Request URL
GET /deepcoin/v2/internal-transfer/support
Request Parameters
None
Response Parameters
| Field Name | Type | Description |
|---|---|---|
| ccy | string | Currency |
| min | string | Minimum transfer amount |
| max | string | Maximum transfer amount |
Response Example
{
"code": "0",
"msg": "",
"data": {
"message": "",
"data": [
{
"ccy": "BTC",
"min": "0.0001",
"max": "0.001"
},
{
"ccy": "ETH",
"min": "0.001",
"max": "0.02"
}
]
}
}