fred-economic-data

Solid

Query FRED (Federal Reserve Economic Data) API for 800,000+ economic time series from 100+ sources. Access GDP, unemployment, inflation, interest rates, exchange rates, housing, and regional data. Use for macroeconomic analysis, financial research, policy studies, economic forecasting, and academic research requiring U.S. and international economic indicators.

AI & Automation 2,202 stars 164 forks Updated 1 weeks ago Apache-2.0

Install

View on GitHub

Quality Score: 94/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# FRED Economic Data Access ## Overview Access comprehensive economic data through FRED (Federal Reserve Economic Data), a database maintained by the Federal Reserve Bank of St. Louis containing over 800,000 economic time series from over 100 sources. **Key capabilities:** - Query economic time series data (GDP, unemployment, inflation, interest rates) - Search and discover series by keywords, tags, and categories - Access historical data and vintage (revision) data via ALFRED - Retrieve release schedules and data publication dates - Map regional economic data with GeoFRED - Apply data transformations (percent change, log, etc.) ## API Key Setup **Required:** All FRED API requests require an API key. 1. Create an account at https://fredaccount.stlouisfed.org 2. Log in and request an API key through the account portal 3. Set as environment variable: ```bash export FRED_API_KEY="your_32_character_key_here" ``` Or in Python: ```python import os os.environ["FRED_API_KEY"] = "your_key_here" ``` ## Quick Start ### Using the FREDQuery Class ```python from scripts.fred_query import FREDQuery # Initialize with API key fred = FREDQuery(api_key="YOUR_KEY") # or uses FRED_API_KEY env var # Get GDP data gdp = fred.get_series("GDP") print(f"Latest GDP: {gdp['observations'][-1]}") # Get unemployment rate observations unemployment = fred.get_observations("UNRATE", limit=12) for obs in unemployment["observations"]: print(f"{obs['date']}: {obs['value']}%") # Search for infl...

Details

Author
foryourhealth111-pixel
Repository
foryourhealth111-pixel/Vibe-Skills
Created
3 months ago
Last Updated
1 weeks ago
Language
Python
License
Apache-2.0

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

usfiscaldata

Query the U.S. Treasury Fiscal Data API for federal financial data including national debt, government spending, revenue, interest rates, exchange rates, and savings bonds. Access 54 datasets and 182 data tables with no API key required. Use when working with U.S. federal fiscal data, national debt tracking (Debt to the Penny), Daily Treasury Statements, Monthly Treasury Statements, Treasury securities auctions, interest rates on Treasury securities, foreign exchange rates, savings bonds, or any U.S. government financial statistics.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
Data & Documents Solid

usfiscaldata

Query the U.S. Treasury Fiscal Data API for federal financial data including national debt, government spending, revenue, interest rates, exchange rates, and savings bonds. Access 54 datasets and 182 data tables with no API key required. Use when working with U.S. federal fiscal data, national debt tracking (Debt to the Penny), Daily Treasury Statements, Monthly Treasury Statements, Treasury securities auctions, interest rates on Treasury securities, foreign exchange rates, savings bonds, or any U.S. government financial statistics.

26,659 Updated 2 days ago
K-Dense-AI
AI & Automation Solid

hedgefundmonitor

Query the OFR (Office of Financial Research) Hedge Fund Monitor API for hedge fund data including SEC Form PF aggregated statistics, CFTC Traders in Financial Futures, FICC Sponsored Repo volumes, and FRB SCOOS dealer financing terms. Access time series data on hedge fund size, leverage, counterparties, liquidity, complexity, and risk management. No API key or registration required. Use when working with hedge fund data, systemic risk monitoring, financial stability research, hedge fund leverage or leverage ratios, counterparty concentration, Form PF statistics, repo market data, or OFR financial research data.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
AI & Automation Solid

alpha-vantage

Access real-time and historical stock market data, forex rates, cryptocurrency prices, commodities, economic indicators, and 50+ technical indicators via the Alpha Vantage API. Use when fetching stock prices (OHLCV), company fundamentals (income statement, balance sheet, cash flow), earnings, options data, market news/sentiment, insider transactions, GDP, CPI, treasury yields, gold/silver/oil prices, Bitcoin/crypto prices, forex exchange rates, or calculating technical indicators (SMA, EMA, MACD, RSI, Bollinger Bands). Requires a free API key from alphavantage.co.

2,202 Updated 1 weeks ago
foryourhealth111-pixel
AI & Automation Featured

alpha-vantage

Access 20+ years of global financial data: equities, options, forex, crypto, commodities, economic indicators, and 50+ technical indicators.

39,227 Updated today
sickn33