Skip to content

Latest commit

 

History

History

exchange_rates

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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