fredapiEasy Examples

Python client for Federal Reserve Economic Data (FRED)

Getting started with fredapi

Installation and basic usage of fredapi.

python
# Install: pip install fredapi
import fredapi

# Basic fredapi usage
print(f"Using fredapi")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: fredapi)

fredapi is a third-party package. Python client for Federal Reserve Economic Data (FRED). Install with: pip install fredapi

Common fredapi operations

Frequently used features of fredapi.

python
# Install: pip install fredapi
import fredapi

# Common fredapi patterns
print(f"fredapi version: {fredapi.__version__}")

These are the most commonly used features of fredapi in everyday development.

Want to try these examples interactively?

Open Easy Playground