FRED APIs in R

Macro
FRED
Comparative of two common methods
Author

Mike Aguilar

Published

December 9, 2024

Introduction

API’s are a convenient way to automate the download acquisition process.

In this post we’ll explore two packages that provide APIs into FRED. ## FREDR https://sboysel.github.io/fredr/articles/fredr.html

FREDO

https://github.com/manutzn/fredo

Housekeeping

cat("\014")  # clear console
rm(list=ls())  # Clear the workspace

library(fredo)
library(fredr)
library(dplyr)
library(purrr)
library(lubridate)

Steps

  1. Go to FRED and sign in with your free account.
  2. Request for your API key https://fred.stlouisfed.org/docs/api/api_key.html
  3. Create a plain txt document titled API_Key.txt and paste the key into the top of the document. Do not include any other supporting information.
  4. Ensure API_Key.txt is on your path.

Alternatively, you could set an environment variable. See FREDO BLOG on FRED for details.

FREDR

Task: open connection to FRED via your API key

api_key <- readLines("API_key.txt")
fredr_set_key(api_key)

Acquiring 10yr Treasury

Task: use fredr_series_observations to call the 10yr ticker DGS10

TenYr.D.FREDR<-fredr_series_observations("DGS10")

Refining and transforming

Task: use the fredr function to call the 10yr from the beginning of 1990 through the beginning of 2000 on a quarterly basis and set units to the raw change (delta, not percent delta)

TenYr.Q.FREDR<-fredr(
  series_id = c("DGS10"),
  observation_start = as.Date("1990-01-01"),
  observation_end = as.Date("2000-01-01"),
  frequency = "q", 
  units = "chg" 
)

Multiple Series

Task: Create a list containing an object called series_id containing a column vector containing two elements, one for the 10yr FRED ticker and one for the FRED UR ticker. Also create frequency object within that list called frequency that contains the FRED indicator for monthly data; one for each series. Lastly, create observation_start and observation_end objects set to the start of 1990 and the start of 2000, respectively.

params <- list(
  series_id = c("DGS10", "UNRATE"),
  frequency = c("m", "m"),
  observation_start = as.Date("1990-01-01"),
  observation_end = as.Date("2000-01-01")
)

Task: Create an object called MultipleSeries that uses pmap_dfr to call fredr and the list you created above. Then select only the date, series_id, and value from that dataframe.

MultipleSeries.FREDR <- pmap_dfr(
  .l = list(params$series_id, params$frequency),
  .f = ~ fredr(
    series_id = ..1, 
    frequency = ..2, 
    observation_start = params$observation_start,
    observation_end = params$observation_end
  )
)%>%
  dplyr::select(date,series_id,value)

FREDO

Acquiring 10yr Treasury

Task: Pull all available data for the 10yr daily Treasury yield.

series_ids <- c("DGS10")
start_date <- ""
end_date <- ""
TenYr.D.FREDO<-fredo(
  api_key,
  series_ids,
  start_date=start_date, 
  end_date = end_date)

Refining and Transforming

FREDO doesn’t appear to have a way to natively aggregate the frequency nor transform the data.

Multiple Series

Task: Pull the 10yr and UR from 1990-01-01 to 2000-01-01.

series_ids <- c("DGS10", "UNRATE")
start_date <- as.Date("1990-01-01")
end_date <- as.Date("2000-01-01")
MultipleSeries.FREDO<-fredo(
  api_key,
  series_ids,
  start_date=start_date, 
  end_date = end_date)
dim(MultipleSeries.FREDO)
[1] 2731   17

I love that it stacks the series into a long dataframe.

I don’t like that there doesn’t seem to be a native way to get these onto the same frequency.

Task: Switch the order of the series ID.

series_ids <- c("UNRATE","DGS10")
start_date <- as.Date("1990-01-01")
end_date <- as.Date("2000-01-01")
MultipleSeries.FREDO2<-fredo(
  api_key,
  series_ids,
  start_date=start_date, 
  end_date = end_date)
dim(MultipleSeries.FREDO2)
[1] 2731   17

Notice that the dimensions are the same. So, that doesn’t resolve the issue.

Plotting

FREDO has an interesting feature that permits you to auto generate plots. I especially like the ability to automatically turn recession shading on / off.

Task: Plot the 10yr from FREDO with recession bars

plot_fredo(
  dataset = TenYr.D.FREDO,
  path = "./",
  show_recessions = TRUE, 
  generate_latex = TRUE
)
\begin{figure}[!h]
\centering
\caption{Market Yield on U.S. Treasury Securities at 10-Year Constant Maturity, Quoted on an Investment Basis}
\includegraphics[scale=1]{Plots/DGS10}
\label{DGS10}
\parbox[1]{6.0in}{ \vspace{1ex} \footnotesize{H.15 Statistical Release (https://www.federalreserve.gov/releases/h15/current/h15.pdf) notes and Treasury Yield Curve Methodology (https://www.treasury.gov/resource-center/data-chart-center/interest-rates/Pages/yieldmethod.aspx).  For questions on the data, please contact the data source (https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h15/%). For questions on FRED functionality, please contact us here (https://fred.stlouisfed.org/contactus/).</p>\hfill }}
\end{figure}
 
[[1]]
NULL

It’s too bad that the graphics are only exported and not produced natively.

The latex output is handy if you input the image files into a latex document for presentation.

Comparison

Strengths of FREDO relative to FREDR:

  • Native stacking of multiple series into long data frame
  • Native plotting

Weaknesses of FREDO relative to FREDR:

  • Requires that you identify the start and end dates. Annoying if you just want to pull in the entire series. This is especially annoying if 1) you don’t know the first date available on FRED, and/or 2) you always want the latest value. We can get around this by setting start and end dates to ““. We could also set the end date to Sys.Date().
  • Can’t natively aggregate frequencies
  • Can’t natively impose transformation