{ "USD": { "USD": "1", "CHF": "0.935074" }, "EUR": { "USD": "1.186102", "CHF": "1.109093" }, "GBP": { "USD": "1.38394", "CHF": "1.294086" } }
Last updated 3 months ago
Fetch the fiat rates for all specified fiat currency pairs. The rates are updated every 5 minutes.
Returns the available rates for the requested currency pairs.
const response = await fetch('/api/v1/exchange/rates/fiat?fromCurrency=EUR&toCurrency=AED', { method: 'GET', headers: {}, }); const data = await response.json();