curl --location --request POST '/api/v1/transactions/calculate-payment' \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"fromCurrency": "string",
"fromNetwork": "string",
"toCurrency": "string",
"toAmount": 0.01
}'{
"success": true,
"data": {
"fromAmount": 0,
"toAmount": 0,
"targetAmountWithFee": 0,
"gateFee": 0,
"gateFeePercentage": 0,
"exchangeRate": 0,
"exchangeSource": "string",
"fees": {},
"timestamp": "string"
}
}