Macroeconomic & markets
Economic Indicators
Returns observations of key US macro + energy indicators from three sources: - BLS (Bureau of Labor Statistics): the canonical labor + price statistics. ~20-series watchlist covering unemployment, payrolls, wages, CPI, PPI, productivity.
Endpoint
GET /v1/economic-indicatorsSourceBLS + FRED + EIA + Treasury FiscalData
Authx-api-key — a free key works
What it returns
One record per result. Fields (from a live response):
- Identity —
series_name - Subject —
series_description - Dates —
period,year,period_type,scraped_at - The trade / event —
category - Amounts —
value - Provenance —
source,source_url - Details —
notes,series_id,unit,id
Filters
| source | Filter to one source. Omit to query all three. BLS = canonical labor + price stats. FRED = rates, money, GDP, PCE inflation, sentiment. EIA = energy… |
| series_id | Exact series ID. BLS examples: 'LNS14000000' (U-3), 'CES0000000001' (payrolls), 'CUUR0000SA0' (CPI). FRED examples: 'DFF' (Fed Funds), 'DGS10' (10Y… |
| category | Bucket filter. |
| period_type | Cadence filter. |
| since_year | Calendar-year lower bound (inclusive). |
| until_year | Calendar-year upper bound (inclusive). |
| latest_only | When true, return only the most-recent observation per series. Useful for 'current state' snapshots. |
| sort_by | Default period (chronological). |
| sort_order | Default desc. |
| limit | Default 50, max 500. |
Example request
curl "https://api.keyvex.com/v1/economic-indicators?limit=1" \
-H "x-api-key: YOUR_KEY"
Response
{
"results": [
{
"period": "2026W25",
"notes": "",
"year": 2026,
"series_description": "US Treasury operating cash balance at the Fed. Changes affect short-term liquidity.",
"source": "fred",
"source_url": "https://fred.stlouisfed.org/series/WTREGEN",
"series_id": "WTREGEN",
"unit": "billions of dollars",
"series_name": "Treasury General Account",
"id": "WTREGEN-2026W25",
"category": "debt",
"value": 880713,
"period_type": "weekly",
"scraped_at": "2026-06-23T13:00:19.838Z"
}
],
"count": 1,
"has_more": true
}
Example questions you can answer
- Latest CPI, unemployment, or GDP series values.
- A macro time series over a date range.
Related datasets
Query Economic Indicators from your AI
Hand any AI your key + the OpenAPI spec and it can pull this dataset directly. Free key = full data, 60 requests/day.
Get a free key OpenAPI spec → REST docs →