coinmarketcap_categories: coinmarketcap_categories
Description
coinmarketcap_categories
Usage
coinmarketcap_categories(
api_key,
start = "1",
limit = NULL,
id = NULL,
slug = NULL,
symbol = NULL,
timeout_seconds = 60
)
Value
returns a datafrane with information about CoinMarketCap asset
categories.
Arguments
- 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.
Examples
Run this codeif (FALSE) {
api_key <- "..."
categories <- coinmarketcap_categories(api_key)}
Run the code above in your browser using DataLab