curl --request GET \
--url https://sandbox-api.kotanipay.com/api/v3/rate \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Available exchange rate.",
"data": [
{
"from": "USD",
"to": "EUR",
"value": "0.85"
}
]
}An integrator can use this endpoint to get all the exchange rates available
curl --request GET \
--url https://sandbox-api.kotanipay.com/api/v3/rate \
--header 'Authorization: Bearer <token>'{
"success": true,
"message": "Available exchange rate.",
"data": [
{
"from": "USD",
"to": "EUR",
"value": "0.85"
}
]
}