Nothing
# BrazilDataAPI - Access Brazilian 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 Official Interest Rates and Indexes from Brazil
#'
#' This function retrieves official interest rates and indexes from the BrazilAPI
#' endpoint: `https://brasilapi.com.br/api/taxas/v1`.
#'
#' @return A tibble with the following columns:
#' \itemize{
#' \item \code{nome}: Name or acronym of the rate/index.
#' \item \code{valor}: Current value of the rate/index.
#' }
#'
#' @examples
#' \dontrun{
#' taxas <- get_brazil_rates()
#' print(taxas)
#' }
#'
#' @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_brazil_rates <- function() {
url <- "https://brasilapi.com.br/api/taxas/v1"
res <- httr::GET(url)
if (res$status_code != 200) {
message(paste("Error: Received status code", res$status_code))
return(NULL)
}
res_content <- jsonlite::fromJSON(httr::content(res, "text", encoding = "UTF-8"), flatten = TRUE)
df <- dplyr::as_tibble(res_content)
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.