Asset list query
Used to query the list of assets supported by the current merchant
Request address
- API Address (requestURI) : /openapi/v1/queryAsset
Request parameters
Parameter name | Type | Requirement | Description |
---|---|---|---|
assetType | Integer | R | Asset Types, [0: Cryptocurrency, 1: Fiat Currency] Do not check all |
Sample request
{
"assetType": 1
}
Response parameters
Parameter name | Type | Requirement | Description |
---|---|---|---|
assetType | Integer | R | [0: Cryptocurrency, 1: Fiat Currency] |
assetName | String | R | Asset Name/Currency |
netProtocol | String | R | Network Protocol/Payment Type |
assetNet | String | R | The full name of the asset network/payment type is |
minDepositAmount | String | R | Minimum deposit amount (in current currency) |
minWithdrawalAmount | String | R | Minimum withdrawal amount (unit: current currency) |
maxDepositAmount | String | R | Maximum Deposit Amount (Unit: Current Currency) |
maxWithdrawalAmount | String | R | Maximum withdrawal amount (unit: current currency) |
Sample response
{
"code": 200,
"msg": "success",
"data": [
{
"assetType": 1,
"assetName": "USD",
"netProtocol": "bank",
"assetNet": "Bank",
"minDepositAmount": "100",
"minWithdrawalAmount": "100",
"maxDepositAmount": "10000",
"maxWithdrawalAmount": "10000"
},
{
"assetType": 1,
"assetName": "CNY",
"netProtocol": "bank",
"assetNet": "Bank",
"minDepositAmount": "100",
"minWithdrawalAmount": "100",
"maxDepositAmount": "10000",
"maxWithdrawalAmount": "10000"
}
]
}