GnistAI GnistAI
Log in

Economic Indicators

GDP, inflation, unemployment, and trade statistics from the World Bank, OECD, Eurostat, and BLS through a single, consistent API. Harmonized economic data ready to use.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 4 tools tools 4 4 Economics

Data source: World Bank, OECD, Eurostat, BLS

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/economic-indicators/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-economic-indicators": {
      "url": "https://context.gnist.ai/mcp/economic-indicators/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/economic-indicators/" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_economic_indicators", "arguments": {"query": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/economic-indicators/

4 endpoints available:

Shell
curl "https://context.gnist.ai/rest/economic-indicators/search_economic_indicators?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/economic-indicators/search_economic_indicators",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc economic-indicators

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (4)

search_economic_indicators
Search for economic indicators across World Bank, OECD, Eurostat, and BLS.
ParameterTypeRequiredDescription
querystringrequiredSearch query — topic, indicator name, or keyword (e.g. 'GDP growth', 'unemployment rate', 'inflation').
limitintegeroptionalMaximum results per source. (default: 10)
get_economic_data
Fetch time series data for an economic indicator from one or all sources.
ParameterTypeRequiredDescription
indicatorstringrequiredIndicator ID from a source (e.g. 'NY.GDP.MKTP.CD' for World Bank GDP).
countrystringrequiredISO country code (e.g. 'USA', 'NOR', 'DEU', 'GBR').
sourceanyoptionalSource name: worldbank, oecd, eurostat, or bls. Omit to try all.
year_fromanyoptionalStart year (e.g. 2010).
year_toanyoptionalEnd year (e.g. 2024).
list_economic_sources
List all registered economic data sources and their coverage.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related