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