#' @title Cryptocurrency Exchanges
#' @description Get cryptocurrency exchanges
#'
#' @importFrom tibble tibble
#'
#' @return
#' @export
#'
#' @examples
#' crypto_exchanges()
crypto_exchanges <- function(...){
url <- finnhub_endpoint('crypto_exchanges')
df <- retry_get(url,
query = list(token = finnhub_key())
)
df %>%
tibble::tibble(crypto_exchange = .)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.