Documentation resources for CoinGecko's 'exchange_rates' API functions.
namespace gecko {
// Purpose: class interface to all CoinGecko 'exchange_rates' functions found below
// Refer: https://www.coingecko.com/api/documentations/v3#/exchange_rates
// Status: functional - untested
class exchange_ratesFunctions : private web {
...
};
}
Below you can find documentation for 'exchange_rates' functions.
// Action: fetches BTC-to-Currency exchange rates
// Returns: gecko::web::response
// Refer: https://www.coingecko.com/api/documentations/v3
// Example(s):
// getExchangeRates()
// Notes: none
gecko::web::response getExchangeRates();