Skip to content

Latest commit

 

History

History

global

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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


Class

namespace gecko {
  // Purpose: class interface to all CoinGecko 'global' functions found below
  // Refer: https://www.coingecko.com/api/documentations/v3#/global
  // Status: functional - untested
  class globalFunctions : private web {
    ...
  };
}

Declarations

Below you can find documentation for 'global' functions.

global/getGlobalCryptoData

  // Action: fetches cryptocurrency global data
  // Returns: gecko::web::response
  // Refer: https://www.coingecko.com/api/documentations/v3
  // Example(s):
  //    getGlobalCryptoData()
  // Notes: none
  gecko::web::response getGlobalCryptoData();

global/getGlobalCryptoDefiData

  // Action: fetches cryptocurrency global decentralized finance(defi) data
  // Returns: gecko::web::response
  // Refer: https://www.coingecko.com/api/documentations/v3
  // Example(s):
  //    getGlobalCryptoDefiData()
  // Notes: none
  gecko::web::response getGlobalCryptoDefiData();