GnistAI GnistAI
Log in

Country Intelligence

Comprehensive country profiles combining economics, statistics, and knowledge base data. One query gives you GDP, demographics, trade, and more for any country.

Overview   |   MCP   |   REST API   |   OpenAPI   |   CLI   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 2 tools tools 2 2 type: composite report type type composite report composite report Government

Data source: World Bank, Eurostat, Wikidata

REST Bridge Endpoint https://context.gnist.ai/rest/country-intelligence/
Authentication

All requests require a Gnist-API-Key header (or api_key query parameter).

Free tier: 100 calls/day. Get your API key.

Tools (2)

country_overview

Multi-source country profile — economics, trade, news, crises, and environment.

Queries World Bank, Eurostat, Wikidata, UN Comtrade, GDELT, Crisis Intelligence,
and Environmental Monitoring for a unified country overview from 7 data sources.

Returns partial results if any source is unavailable.

Args:
country_code: ISO 3166-1 alpha-2 country code (e.g. 'NO', 'US', 'DE').

Returns:
Merged data with keys: worldbank, eurostat, wikidata, trade, news, crises, environment.
Each key contains the upstream response or null if that source failed.

ParameterTypeRequiredDescription
country_codestringrequiredISO 3166-1 alpha-2 country code (e.g. 'NO', 'US', 'DE').
Request Body
{
  "country_code": "NO"
}
report_feedback

Report a bug, feature request, or general feedback for this data source.

Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.

Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.

ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")
Request Body
{
  "feedback": "example"
}

Quick Start

Shell
curl -X POST "https://context.gnist.ai/rest/country-intelligence/country_overview" \
  -H "Content-Type: application/json" \
  -H "Gnist-API-Key: YOUR_API_KEY" \
  -d '{"country_code": "example"}'
Python
import httpx

resp = httpx.post(
    "https://context.gnist.ai/rest/country-intelligence/country_overview",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    json={
  "country_code": "example"
},
)
print(resp.json())

Related Toolkits (Government)

Resources