Crypto top up fee
POST/api/v2/wallets/:id/top-up/crypto/fee
Retrieve information on the crypto top up fee based on provided payload.
Request
Path Parameters
id uuidrequired
Wallet id
- application/json
Body
required
currencyCode CryptoCurrencyCoderequired
Defines the available crypto currency code.
chainCode ChainCoderequired
Possible values: [BSC, TRON, ETH]
Enum defining the available crypto networks.
Responses
- 200
Successful retrieval of crypto top up fee
- application/json
- Schema
- Example (from schema)
Schema
address stringrequired
Crypto address to which user should send the funds.
src base64-encoded imagerequired
QR code of an address to which user should send the funds.
confirmationsCount numberrequired
The number of network confirmation to be passed, so funds will be considered as received.
fee objectrequired
feeAmount Feeamountrequired
unit Unitrequired
misc objectrequired
minDepositAmount decimalrequired
Type, to precisely format numerical values.
minCardIssueBalance decimalrequired
Type, to precisely format numerical values.
currencyCode CryptoCurrencyCoderequired
Defines the available crypto currency code.
rates objectrequired
Provides information about the rate of topped up amount in crypto as fiat value. List includes only USD for now.
USD string
Rate for USD
EUR string
Rate for EUR
GBP string
Rate for GBP
JPY string
Rate for JPY
{
"address": "string",
"src": "string",
"confirmationsCount": 0,
"fee": {
"feeAmount": 0,
"unit": "string"
},
"misc": {
"minDepositAmount": 0,
"minCardIssueBalance": 0,
"currencyCode": "string",
"rates": {
"USD": "string",
"EUR": "string",
"GBP": "string",
"JPY": "string"
}
}
}
Loading...