M2
announcements (https://www.federalreserve.gov/feeds/h6.html) and Technical Q&As (https://www.federalreserve.gov/releases/h6/h6_technical_qa.htm) posted on December 17, 2020. For questions on the data, please contact the data source (https://www.federalreserve.gov/apps/ContactUs/feedback.aspx?refurl=/releases/h6/%). For questions on FRED functionality, please contact us here (https://fred.stlouisfed.org/contactus/).</p>
Source: FRED (St. Louis Fed)811 rowsUpdated: 9/21/2026
money-supplyfred
Quality
100
Attribution
Federal Reserve Bank of St. Louis (FRED)
Schema
| Column | Type | Description |
|---|---|---|
| date | string | |
| value | float |
Sample rows
| date | value |
|---|---|
| 1959-01-01 | 286.6 |
| 1959-02-01 | 287.7 |
| 1959-03-01 | 289.2 |
| 1959-04-01 | 290.1 |
| 1959-05-01 | 292.2 |
Use with an LLM
Point any LLM at the metadata endpoint — the documentation above is machine-readable too (JSON-LD + Croissant).
cURL
curl "https://datazimuts.com/v1/datasets/fred/money_supply_m2" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/fred/money_supply_m2").json()
print(ds["title"], ds["rows"], "rows")
# Sample rows for an LLM context window
for row in ds.get("sample_rows", [])[:5]:
print(row)API endpoint: https://datazimuts.com/v1/datasets/fred/money_supply_m2
Tip: fetch /llms.txt for the full machine-readable catalog.