View source: R/coinmarketcap.R
coinmarketcap_categories | R Documentation |
coinmarketcap_categories
coinmarketcap_categories(
api_key,
start = "1",
limit = NULL,
id = NULL,
slug = NULL,
symbol = NULL,
timeout_seconds = 60
)
api_key |
your CoinMarketCap API key |
start |
you can use this parameter to offset your first result. The default value is "1". |
limit |
an optional string value between 1 and 5000 which tells CoinMarketCap how many results to return. The default value is NULL. |
id |
filter categories by one or more asset ids. The default value is NULL. Multiple values must be comma-separated. |
slug |
filter categories by one or more asset slugs. The default value is NULL. Multiple values must be comma-separated. |
symbol |
filter categories by one or more asset symbols. The default value is NULL. Multiple values must be comma-separated. |
timeout_seconds |
seconds until the query times out. Default is 60. |
returns a datafrane with information about CoinMarketCap asset categories.
## Not run:
api_key <- "..."
categories <- coinmarketcap_categories(api_key)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.