Response example
{ "ETH": { "EUR": "1467.8", "USD": "1741.1" }, "BTC": { "EUR": "42798", "USD": "50770" }, "XRP": { "EUR": "0.40227", "USD": "0.4772" } }
Last updated 13 days ago
Fetch the deposit rates for all specified crypto to settlement or display currency pair.
Returns the available rates for the requested currency pairs.
const response = await fetch('/api/v1/exchange/rates/deposit?fromCurrency=BCH&toCurrency=text', { method: 'GET', headers: {}, }); const data = await response.json();