Quote
Returns an offramp Quote
This endpoint will return an deposit address for offramp
Create an Offramp Quote
POST
https://api.remitquickly.com/onramp-bank/api/v2/whiteLabel/offramp/quote
Request Body
Name
Type
Description
fromCurrency*
String
Base currency of the trading pair E.g. of fromCurrency:
USDT
toCurrency*
String
Quote currency of the trading pair
E.g. of toCurrency: AED
fromAmount*
String
Crypto quantity user wants to sell
{
"status": 1,
"code": 200,
"data": {
"fromCurrency": "USDT",
"toCurrency": "AED",
"toAmount": "20",
"fromAmount": "",
"fees": [
{
"type": "fiat",
"onrampFee": 3,
"clientFee": 0,
"gatewayFee": 0,
"gasFee": 8.26
}
]
}
}
{
"status": 1,
"code": 200,
"data": {
"fromCurrency": "AED",
"toCurrency": "USDC",
"toAmount": "1938.65",
"fromAmount": "7213",
"rate": "3.72",
"fees": [
{
"type": "fiat",
"onrampFee": "18.95",
"clientFee": 0,
"gatewayFee": 0,
"gasFee": "3.72"
}
]
}
}
Last updated