Skip to content

Latest commit

 

History

History

status_updates

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

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


Class

namespace gecko {
  // Purpose: class interface to all CoinGecko 'status_updates' functions found below
  // Refer: https://www.coingecko.com/api/documentations/v3#/status_updates_(beta)
  // Status: beta, likely unstable - untested
  class status_updatesFunctions : private web {
    ...
  };
}

Declarations

Below you can find documentation for 'status_updates' functions.

status_updates/getStatusUpdates

  // Action: fetches all status_updates with data
  // Returns: gecko::web::response
  // Refer: https://www.coingecko.com/api/documentations/v3
  // Example(s):
  //    getStatusUpdates()
  //    getStatusUpdates(NULL, NULL, 20, 1)
  // Notes: none
  gecko::web::response getStatusUpdates(
    OPTIONAL const char* category = NULL,
    OPTIONAL const char* project_type = NULL,
    OPTIONAL unsigned short per_page = 100,
    OPTIONAL unsigned short page = 1
  );