Documentation resources for CoinGecko's 'global' API functions.
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 {
...
};
}
Below you can find documentation for 'global' functions.
// 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();
// 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();