#' @title Transcripts List
#' @description Get transcripts list
#'
#' @param symbol Stock ticker
#'
#' @return
#' @export
#'
#' @examples
#' transcripts_list('NVDA')
transcripts_list <- function(symbol, ...){
url <- finnhub_endpoint('transcripts_lists')
df <- retry_get(url,
query = list(token = finnhub_key(),
symbol = symbol))
df
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.