View source: R/cc_general_info.R
cc_general_info | R Documentation |
Retrieve the general information, using the cryptocompare Api.
cc_general_info(
info = "coins",
currency = "USD",
api_key = NULL,
verbose = FALSE
)
info |
Character. Without an
|
currency |
Character. Currency in which convert the monetary values. |
api_key |
Character, optional. Api key from cyptocompare. |
verbose |
Logical. If |
a tibble
# Endpoints reachable without an Api Key
cc_general_info("coins")
cc_general_info("exchanges")
# Endpoints reachable only with a valid Api Key
## Not run:
api_key <- "yourapikey"
cc_general_info("gambling", api_key = api_key)
cc_general_info("wallets", api_key = api_key)
cc_general_info("cards", api_key = api_key)
cc_general_info("contracts", api_key = api_key)
cc_general_info("companies", api_key = api_key)
cc_general_info("equipment", api_key = api_key)
cc_general_info("pools", api_key = api_key)
cc_general_info("blockchain", api_key = api_key)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.