get_api_limit returns a tibble detailing API calls made and API calls remaining against established rate limits.

get_api_limit(time = "hour")

Arguments

time

character. Either "hour", "minute", or "second". Defaults to "hour".

Value

A single tibble with two rows - one for calls made and one for calls remaining.

References

https://www.cryptocompare.com/api#requests

Examples

# NOT RUN {
# Get hour limit
get_api_limit()

# Get second limit
get_api_limit(time = "second")
# }