const response = await fetch('https://api.younium.com/ExchangeRate', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"effectiveFromDate": "2024-12-22T02:23:38.782Z",
"fromCurrency": "SEK",
"rate": 0
}),
});
const data = await response.json();