Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 985 Bytes

File metadata and controls

35 lines (29 loc) · 985 Bytes

Documentation resources for CoinGecko's 'exchange_rates' API functions.


Class

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 {
    ...
  };
}

Declarations

Below you can find documentation for 'exchange_rates' functions.

exchange_rates/getExchangeRates

  // 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();