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