Response example
{ "ETH":{ "EUR":"2258.7", "USD":"2386.15" }, "BTC":{ "EUR":"30086.5", "USD":"31784" } }
Last updated 13 days ago
Fetch the market rates for all specified currency pairs.
Returns the available rates for the requested currency pairs.
const response = await fetch('/api/v1/exchange/rates/market?fromCurrency=BCH&toCurrency=BCH', { method: 'GET', headers: {}, }); const data = await response.json();