Tous les jeux de données

Federal Funds Effective Rate

Daily Federal Funds Rate from 1928-1954 (https://fred.stlouisfed.org/categories/33951). The federal funds rate is the interest rate at which depository institutions trade federal funds (balances held at Federal Reserve Banks) with each other overnight. When a depository institution has surplus balances in its reserve account, it lends to other banks in need of larger balances. In simpler terms, a bank with excess cash, which is often referred to as liquidity, will lend to another bank that nee…

Source: FRED (St. Louis Fed)866 lignesMis à jour: 21/09/2026
interest-ratesfedfred

Qualité

100

Attribution

Federal Reserve Bank of St. Louis (FRED)

Schéma

ColonneTypeDescription
datestring
valuefloat

Exemple de lignes

datevalue
1954-07-010.8
1954-08-011.22
1954-09-011.07
1954-10-010.85
1954-11-010.83

Utiliser avec un LLM

Dirigez n’importe quel LLM vers le point d’accès des métadonnées — la documentation ci-dessus est aussi lisible par machine (JSON-LD + Croissant).

cURL

curl "https://datazimuts.com/v1/datasets/fred/federal_funds_rate" | jq '{title, rows, columns_count, license}'

Python

import requests

ds = requests.get("https://datazimuts.com/v1/datasets/fred/federal_funds_rate").json()
print(ds["title"], ds["rows"], "rows")

# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
    print(row)

Point d’accès API: https://datazimuts.com/v1/datasets/fred/federal_funds_rate

Astuce : récupérez /llms.txt pour le catalogue complet lisible par machine.