curl --location --request POST '/onramp-seb/api/v2/whiteLabel/offramp/quote' \
--data-urlencode 'fromCurrency=USDC' \
--data-urlencode 'toCurrency=INR' \
--data-urlencode 'fromAmount=50' \
--data-urlencode 'chain=base'
{
"status": 1,
"code": 200,
"data": {
"fromCurrency": "usdc",
"toCurrency": "INR",
"fromAmount": "20",
"toAmount": "1667.7",
"rate": "84.6196",
"fees": [
{
"type": "fiat",
"onrampFee": "4.23",
"gatewayFee": "3.54",
"tdsFee": "16.92"
}
]
}
}