get_top_exchanges_full retrieves top exchanges for the given coin pair by volume along with additional coin and exchange details.

get_top_exchanges_full(fsym, tsym, limit = 5, sign = FALSE,
  app_name = NULL)

Arguments

fsym

character. 3 letter name for coin to retreive price history for.

tsym

character. 3 letter name for how price should be reported for fsym.

limit

numeric. Maximum number of returned exchanges. Between 1 and 50.

sign

logical. Should the server sign the response? Defaults to FALSE

app_name

character. Name of app to be passed in API request. Defaults to NULL.

Value

A named list containing exchanges, coin_info, and aggregated_data.

References

https://min-api.cryptocompare.com

Examples

# NOT RUN {
get_top_exchanges_full("BTC", "USD")
# }