GDP
Source: FRED (St. Louis Fed)322 rowsUpdated: 9/21/2026
gdpmacroeconomicsfred
Quality
99.8
Attribution
Federal Reserve Bank of St. Louis (FRED)
Schema
| Column | Type | Description |
|---|---|---|
| date | string | |
| value | float |
Sample rows
| date | value |
|---|---|
| 1946-01-01 | — |
| 1946-04-01 | — |
| 1946-07-01 | — |
| 1946-10-01 | — |
| 1947-01-01 | 243.164 |
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/gdp" | jq '{title, rows, columns_count, license}'Python
import requests
ds = requests.get("https://datazimuts.com/v1/datasets/fred/gdp").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/gdp
Tip: fetch /llms.txt for the full machine-readable catalog.