Get release dates for all releases of economic data. Note that release dates are published by data sources and do not necessarily represent when data will be available on the FRED or ALFRED websites.

fredr_releases_dates(
  ...,
  limit = NULL,
  offset = NULL,
  sort_order = NULL,
  order_by = NULL,
  include_release_dates_with_no_data = NULL,
  realtime_start = NULL,
  realtime_end = NULL
)

Arguments

...

These dots only exist for future extensions and should be empty.

limit

An integer limit on the maximum number of results to return. Defaults to 1000, the maximum.

offset

An integer used in conjunction with limit for long series. This mimics the idea of pagination to retrieve large amounts of data over multiple calls. Defaults to 0.

sort_order

A string representing the order of the resulting series. Possible values are: "asc" and "desc" (default).

order_by

Order results by values of the specified attribute. Possible values include: 'release_date' (default), 'release_id', 'release_name'.

include_release_dates_with_no_data

A boolean value indicating if the results with no data available should be returned as well. Default is FALSE.

realtime_start

A Date indicating the start of the real-time period. Defaults to the first day of the current year. For more information, see Real-Time Periods.

realtime_end

A Date indicating the end of the real-time period. Defaults to 9999-12-31 (latest available). For more information, see Real-Time Periods.

Value

A tibble object.

API Documentation

fred/releases/dates

Examples

if (fredr_has_key()) {
fredr_releases_dates(limit = 20L)
}
#> # A tibble: 20 × 3
#>    release_id release_name                                          date      
#>         <int> <chr>                                                 <chr>     
#>  1         72 Daily Treasury Inflation-Indexed Securities           2023-04-17
#>  2        502 Euro Short Term Rate                                  2023-04-17
#>  3        101 FOMC Press Release                                    2023-04-17
#>  4        504 Historical Overnight AMERIBOR Unsecured Interest Rate 2023-04-17
#>  5        484 Key ECB Interest Rates                                2023-04-17
#>  6        287 Nikkei Indexes                                        2023-04-17
#>  7        445 Secured Overnight Financing Rate Data                 2023-04-17
#>  8        483 SOFR Averages and Index Data                          2023-04-17
#>  9        492 SONIA Interest Rate Benchmark                         2023-04-17
#> 10        441 Coinbase Cryptocurrencies                             2023-04-16
#> 11        101 FOMC Press Release                                    2023-04-16
#> 12        441 Coinbase Cryptocurrencies                             2023-04-15
#> 13        101 FOMC Press Release                                    2023-04-15
#> 14        470 World Uncertainty Index                               2023-04-15
#> 15          9 Advance Monthly Sales for Retail and Food Services    2023-04-14
#> 16        280 Cass Freight Index Report                             2023-04-14
#> 17        441 Coinbase Cryptocurrencies                             2023-04-14
#> 18         86 Commercial Paper                                      2023-04-14
#> 19         72 Daily Treasury Inflation-Indexed Securities           2023-04-14
#> 20        279 Economic Policy Uncertainty                           2023-04-14