curl --location --request POST '/api/v1/onramp/quote' \
--header 'x-api-key;' \
--data-urlencode 'fromCurrency=INR' \
--data-urlencode 'toCurrency=USDT' \
--data-urlencode 'fromAmount=1000' \
--data-urlencode 'chain=matic20' \
--data-urlencode 'paymentMethodType=UPI'
{
"status": 1,
"code": 200,
"data": {
"fromCurrency": "INR",
"toCurrency": "USDT",
"toAmount": "10.84",
"fromAmount": "1000",
"rate": "88",
"fees": [
{
"type": "fiat",
"onrampFee": "2.5",
"clientFee": 0,
"gatewayFee": 0,
"gasFee": "44"
}
]
}
}