List the user's exchange rates.
GET
/api/exchange-rates
const url = 'https://api.tradr.cloud/api/exchange-rates';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.tradr.cloud/api/exchange-ratesAuthed. Tradr does not fetch rates from any market feed — you supply them. Each rate is a base/quote pair with a value and an effective date, and conversions use the latest rate on or before the date being converted.
Responses
Section titled “Responses”The user’s exchange rates.