Historical Economic Indicator Data
Retrieve historical time-series data for economic indicators such as unemployment rates, inflation metrics, GDP growth, and other macro variables. Analyze long-term economic trends and correlations with market performance.
Use Case: Chart historical CPI data over 10 years to visualize inflation trends and correlate with stock market returns.
Authorizations
OAuth2 Bearer token: obtain an access token from the token endpoint and send it in the Authorization header.
Path Parameters
Economic indicator code from the upstream calendar provider. These codes are not a fixed enum on our side — fetch GET /v1/calendars/economics to see the codes attached to recent calendar entries, then use that code here for the historical series. Common examples:
USURTOT— United States Unemployment Rate (total).UNITEDSTACONJOBCLA— U.S. Continuing Jobless Claims.UNITEDSTACONCRE— U.S. Consumer Credit.
"USURTOT"
Response
Economic indicator historical data retrieved successfully
Category label for the economic event/indicator (e.g. GDP, Inflation, Employment). Format depends on the upstream data source.
Country code or name
Date and time of the data point
Data frequency (e.g., monthly, quarterly, yearly)
Symbol identifier for the historical data
Last update timestamp
Indicator value
[
{
"category": "Employment",
"country": "US",
"dateTime": "2026-01-15T08:30:00Z",
"frequency": "monthly",
"historicalDataSymbol": "USURTOT",
"lastUpdate": "2026-01-15T08:30:00Z",
"value": 3.7
}
]