check-country-risk
Use this skill when the user asks about a country's current risk or instability: the Country Instability Index (CII) stress score, its travel advisory level, and whether sanctions are active against it. For the longer-horizon structural view, fetch-resilience-score is the companion skill.
Authentication
Server-to-server callers (agents, scripts, SDKs) MUST present an API key in the X-WorldMonitor-Key header. Authorization: Bearer … is for MCP/OAuth or Clerk JWTs — not raw API keys.
X-WorldMonitor-Key: wm_0123456789abcdef0123456789abcdef01234567
Issue a key at https://www.worldmonitor.app/pro.
Endpoint
GET https://api.worldmonitor.app/api/intelligence/v1/get-country-risk
Parameters
| Name | In | Required | Shape | Notes |
|---|---|---|---|---|
country_code | query | yes | ISO 3166-1 alpha-2, uppercase (e.g. IR, SD) | Lowercase is rejected. |
jmespath | query | no | JMESPath expression, ≤ 1024 chars | Server-side projection. |
Response shape
{
"countryCode": "SD",
"countryName": "Sudan",
"cii": { "score": 78, "…": "…" },
"advisoryLevel": "do-not-travel",
"sanctionsActive": true,
"san…