GET/api/v1/economic/{indicator}

Fetch macroeconomic indicator data including interest rates, inflation, GDP, and more.

Fetches time-series data for macroeconomic indicators. Available on both Free and Pro tiers.

#Authentication

Requires an API key. Available to Free and Pro users.

x-api-key: YOUR_API_KEY

#URL Parameters

ParameterTypeDescription
indicatorstringThe economic indicator ID (see list below). Use list to discover all available indicators.

#Query Parameters

ParameterTypeDefaultDescription
timeframestring5yTime range: 1y, 5y, 10y, 20y, all

#Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://chartinspect.com/api/v1/economic/interest_fed?timeframe=5y"

#Response

json
{
  "success": true,
  "indicator": "interest_fed",
  "count": 1260,
  "data": [
    {
      "date": "2021-04-01",
      "value": 0.07,
      "change": 0,
      "changePercent": 0
    }
  ],
  "metadata": {
    "processingTime": 12,
    "timestamp": "2026-04-01T16:00:00.000Z",
    "dataRange": { "start": "2021-04-01", "end": "2026-03-31" },
    "apiVersion": "v1"
  }
}

#Discover All Indicators

curl -H "x-api-key: YOUR_API_KEY" \
  https://chartinspect.com/api/v1/economic/list

#Available Indicators

#Interest Rates & Monetary Policy

IDDescription
interest_fedFederal Funds Effective Rate
rates_3m_treasury3-Month Treasury Yield
rates_2y_treasury2-Year Treasury Yield
rates_10y_treasury10-Year Treasury Yield
rates_30y_treasury30-Year Treasury Yield
rates_yield_spread_10y2y10Y-2Y Treasury Yield Spread
rates_mortgage_30y30-Year Mortgage Rate
fed_balanceFederal Reserve Balance Sheet
money_m2M2 Money Supply (US)
money_baseMonetary Base
money_m2_globalGlobal M2 Money Supply

#Inflation & Prices

IDDescription
inflation_rateCPI Inflation Rate (YoY)
inflation_cpiConsumer Price Index
inflation_core_cpiCore CPI (ex Food & Energy)
inflation_pcePCE Inflation Rate
inflation_core_pceCore PCE Inflation
inflation_ppiProducer Price Index
inflation_breakeven_10y10-Year Breakeven Inflation

#Labor Market

IDDescription
employment_unrateUnemployment Rate
labor_participationLabor Force Participation Rate
labor_employment_ratioEmployment-Population Ratio
labor_nonfarm_payrollsNonfarm Payrolls
labor_hourly_earningsAverage Hourly Earnings
labor_initial_claimsInitial Jobless Claims

#Economic Growth & Activity

IDDescription
macro_gdpGDP Growth Rate
economy_industrial_productionIndustrial Production Index
economy_capacity_utilizationCapacity Utilization
economy_consumer_sentimentConsumer Sentiment Index
economy_consumer_confidenceConsumer Confidence Index
economy_retail_salesRetail Sales
housing_startsHousing Starts
housing_building_permitsBuilding Permits
housing_new_salesNew Home Sales
housing_existing_salesExisting Home Sales
housing_case_shillerCase-Shiller Home Price Index

#Financial Markets

IDDescription
sp500S&P 500 Index
nasdaqNASDAQ Composite
vixCBOE Volatility Index (VIX)
goldGold Price (USD/oz)
dxyUS Dollar Index (DXY)
eurusdEUR/USD Exchange Rate

#Notes

  • Economic data is updated at varying frequencies (daily, weekly, monthly, quarterly) depending on the indicator.
  • Use timeframe=all to get the full historical dataset.
  • The change and changePercent fields show period-over-period change.
Was this page helpful?