Data source: World Bank, Eurostat, Wikidata
https://context.gnist.ai/rest/country-intelligence/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (2)
country_overviewMulti-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.
| Parameter | Type | Required | Description |
|---|---|---|---|
country_code | string | required | ISO 3166-1 alpha-2 country code (e.g. 'NO', 'US', 'DE'). |
{
"country_code": "NO"
}report_feedbackReport 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'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"feedback": "example"
}Quick Start
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"}'
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())