Economic Data

Discover and request ChartInspect macroeconomic, rates, labor, housing, commodity, and index series.

text
GET /api/v1/economic/{indicator}

Economic data is available to Free, Pro, and Enterprise keys with economic permission.

#Discover Indicators

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

The response contains availableIndicators and count. Use those IDs exactly. The generated Full Endpoint Reference adds descriptions where the registry provides them.

#Request a Series

curl -H "x-api-key: YOUR_API_KEY" \
  "https://chartinspect.com/api/v1/economic/inflation_cpi?startDate=2020-01-01&endDate=2026-01-01&limit=1000"

Supported parameters are days, limit, startDate, and endDate. This route does not accept a generic timeframe parameter.

#Response

json
{
  "success": true,
  "indicator": "inflation_cpi",
  "count": 72,
  "data": [],
  "metadata": {
    "dataRange": { "start": "2020-01-01", "end": "2026-01-01" },
    "apiVersion": "v1"
  }
}

Fields vary by source. Some rows contain one value, while market and commodity series can contain OHLC columns. Do not require universal change or changePercent fields.

Was this page helpful?