FRED Economic Data avatar

FRED Economic Data

Pricing

$1.50 / 1,000 results

Go to Apify Store
FRED Economic Data

FRED Economic Data

Search and retrieve economic data series from the Federal Reserve Economic Data (FRED) API. Fetch time series observations for thousands of economic indicators. Categories: economics, financial data, FRED, economic indicators.

Pricing

$1.50 / 1,000 results

Rating

0.0

(0)

Developer

Dash Authority

Dash Authority

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

14 hours ago

Last modified

Share

Search and retrieve economic time series from the Federal Reserve Economic Data (FRED) API. Access over 800,000 economic indicators including GDP, unemployment, inflation, interest rates, and much more.

Features

  • Search FRED's full database of 800,000+ economic time series
  • Retrieve actual time series observations for any matching series
  • Filter by date range to get historical or recent data
  • Sort by popularity, title, or other criteria
  • Free API key required — sign up at fred.stlouisfed.org
  • Pure HTTP requests, no browser needed

Use Cases

  • Financial Analysis: Track GDP growth, CPI, PPI, and employment data to inform investment decisions.
  • Economic Forecasting: Build predictive models using decades of historical Federal Reserve data.
  • AI Training Data: Gather structured economic time series for fine-tuning language models or building economic agents.
  • Academic Research: Access the definitive source for US macroeconomic statistics with full documentation.
  • Trading Signals: Correlate economic releases with market movements for systematic trading strategies.

Input

FieldTypeDescriptionDefault
searchTextstringRequired. Search keywords for economic series
api_keystringRequired. Your FRED API key
limitnumberMaximum series to return100
sort_orderstringSort order: "asc" or "desc"desc
observation_startstringStart date for observations (e.g. 2020-01-01)
observation_endstringEnd date for observations (e.g. 2024-12-31)

Output

Example result:

{
"series_id": "GDP",
"title": "Gross Domestic Product",
"units": "Billions of Dollars",
"frequency": "Quarterly",
"seasonal_adjustment": "Seasonally Adjusted Annual Rate",
"observation_start": "1947-01-01",
"observation_end": "2024-10-01",
"last_updated": "2024-12-19 07:58:02-06",
"popularity": 93,
"notes": "BEA Account Code: A191RL. Gross domestic product (GDP), the featured measure of U.S. output, is the market value of the goods and services produced by labor and property located in the United States.",
"observations": [
{ "date": "2024-07-01", "value": "29353.667" },
{ "date": "2024-04-01", "value": "28649.991" },
{ "date": "2024-01-01", "value": "28275.269" }
]
}
FieldTypeDescription
series_idstringFRED series identifier
titlestringHuman-readable series title
unitsstringMeasurement units (e.g. "Billions of Dollars")
frequencystringData frequency (Daily, Weekly, Monthly, Quarterly, etc.)
seasonal_adjustmentstringSeasonal adjustment method
observation_startstringEarliest available observation date
observation_endstringMost recent observation date
last_updatedstringWhen the series was last updated
popularitynumberFRED popularity rank (0-100)
notesstringSeries description and methodology notes
observationsarrayArray of {date, value} objects (only if dates provided)

Pricing

$1.50 per 1,000 results ($0.0015 per result).

How It Works

The actor first searches the FRED API for matching series using your search text. Each search result becomes one output record. If you provide observation_start or observation_end dates, the actor then fetches the full time series observations for each matching series. This is a two-step HTTP process — search, then retrieve. A free API key from the Federal Reserve is required for every request.

FAQ

Where do I get an API key? Go to https://fred.stlouisfed.org/docs/api/api_key.html — registration is free and the key is issued instantly.

How many observations can I get per series? Up to 1,000 observations per series. For very long time series (like GDP since 1947 at quarterly frequency), you may need to request in date windows.

How many series are available? Over 800,000 economic time series covering US and international macroeconomic data, employment, trade, banking, and more.

Does the search return observations automatically? Only if you provide observation_start or observation_end. Without date parameters, you get series metadata only (title, frequency, units, notes).

Limits & Rate Limits

  • Maximum 1,000 results per search query
  • Maximum 1,000 observations per time series request
  • FRED API allows 120 requests per minute with a free key
  • The actor handles pagination internally when results exceed the limit
  • Historical data availability varies by series — some go back to the 1940s, others start recently