get_api_limit
returns a tibble detailing API calls made and API calls
remaining against established rate limits.
get_api_limit(time = "hour")
time | character. Either "hour", "minute", or "second". Defaults to "hour". |
---|
A single tibble with two rows - one for calls made and one for calls remaining.
https://www.cryptocompare.com/api#requests
# NOT RUN { # Get hour limit get_api_limit() # Get second limit get_api_limit(time = "second") # }