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…
Qualité
Attribution
Federal Reserve Bank of St. Louis (FRED)
Schéma
| Colonne | Type | Description |
|---|---|---|
| date | string | |
| value | float |
Exemple de lignes
| date | value |
|---|---|
| 1954-07-01 | 0.8 |
| 1954-08-01 | 1.22 |
| 1954-09-01 | 1.07 |
| 1954-10-01 | 0.85 |
| 1954-11-01 | 0.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.