Nothing
# ChileDataAPI - Access Chilean Data via APIs and Curated Datasets
# Version 0.2.0
# Copyright (C) 2025 Renzo Caceres Rossi
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#' Get Observed Copper Price per Pound from the findic.cl API
#'
#' This function retrieves the observed daily value of the copper price per pound ("Libra de Cobre")
#' in U.S. Dollars from the API endpoint: \url{https://findic.cl/api/libra_cobre}.
#' The data is provided by the Chilean website \href{https://findic.cl}{findic.cl}.
#'
#' The values returned by the API include metadata and a time series of daily prices.
#' The names of the variables and the values are in Spanish, exactly as provided by the API.
#' For example, the result includes columns named \code{fecha} (date) and \code{valor} (value).
#'
#' @return A tibble (data frame) with the following columns:
#' \itemize{
#' \item \code{fecha}: Fecha del valor observado (in format "YYYY-MM-DD").
#' \item \code{valor}: Valor de la libra de cobre en dólares estadounidenses (numeric).
#' }
#'
#' @details
#' The function sends a GET request to the \code{/api/libra_cobre} endpoint. If the request is successful (HTTP 200),
#' it parses the JSON response and extracts the time series data under the key \code{serie}.
#'
#' All names and values are kept in Spanish as provided by the API and no translation or modification is applied.
#'
#' @examples
#' \dontrun{
#' copper_data <- get_chile_copper_pound()
#' head(copper_data)
#' }
#'
#' @note Requires internet connection. The function returns the values exactly as provided in Spanish.
#'
#' @seealso \code{\link[httr]{GET}}, \code{\link[jsonlite]{fromJSON}}, \code{\link[dplyr]{as_tibble}}
#'
#' @importFrom httr GET
#' @importFrom jsonlite fromJSON
#' @importFrom dplyr as_tibble
#'
#' @export
get_chile_copper_pound <- function() {
url <- "https://findic.cl/api/libra_cobre"
res <- httr::GET(url)
if (res$status_code != 200) {
message(paste("Error: Received status code", res$status_code))
return(NULL)
}
json <- jsonlite::fromJSON(httr::content(res, "text", encoding = "UTF-8"))
serie <- json$serie
df <- dplyr::as_tibble(serie)
return(df)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.