# GeopoliticalPulse Country Risk Assessment

> GeopoliticalPulse Country Risk Assessment is a paid API for AI agents from geopoliticalpulse.theaslangroupllc.com, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-14).

Returns a composite country-level risk rating combining governance scores, GDELT sentiment, and political-stability analysis to indicate whether conditions are deteriorating or improving for investment and compliance purposes.

## Facts

- Endpoint: GET https://geopoliticalpulse.theaslangroupllc.com/api/geopolitical/country-risk
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geopoliticalpulse-country-risk-assessment-1020a8b3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h6pemUYw0K6_hwDdX8Klm

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability geopoliticalpulse-country-risk-assessment-1020a8b3
```

Example prompt: Give me a full country risk assessment for Vietnam — I want to know if the political situation is improving or deteriorating, including the governance score and GDELT sentiment, so I can brief our investment committee.

## When to prefer this

Choose this endpoint when you need a single synthesized country-level risk verdict that blends quantitative governance data (World Bank-style scores) with real-time news sentiment (GDELT) and political-stability signals, rather than sourcing and weighting those data streams yourself. Ideal for investment due diligence, portfolio country-risk screening, or compliance checks where a composite deteriorating/improving signal is more actionable than raw indicator data.

## Known failure modes

- Unrecognized country name or code returns a 400 or error response
- GDELT or governance data temporarily unavailable may return incomplete composite scores
- Very small or unrecognized territories may lack sufficient data for a full assessment
- Rate limiting or payment failure (x402) if USDC payment is not processed correctly

## How this service works

Country risk assessment for investment, risk, and compliance agents. Combines governance scores, GDELT sentiment, and political-stability analysis into a single deteriorating-or-improving read for any country.

## Output

Returns a composite country risk profile including a directional risk trend (deteriorating or improving), governance score, GDELT-based sentiment reading, and political stability analysis — packaged as a single structured assessment for the specified country.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language (ISO 639-1) | en | es | fr | de | ar | zh | pt | ja | ko | ru"
      },
      "country": {
       "type": "string",
       "description": "Country name or code | Russia | China | Iran | Venezuela | Nigeria | Indonesia"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "country": "Russia",
  "key_risks": [
   "Ukraine conflict escalation",
   "Western sanctions intensification",
   "succession uncertainty"
  ],
  "risk_tier": "HIGH",
  "analyst_summary": "Russia remains a high-risk environment for foreign investment...",
  "media_sentiment": {
   "trend_30d": "deteriorating",
   "current_tone": -3.4
  },
  "governance_scores": {
   "rule_of_law": 18,
   "corruption_control": 22,
   "political_stability": 12
  },
  "investment_climate": "AVOID",
  "overall_risk_score": 78
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/geopoliticalpulse-country-risk-assessment-1020a8b3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from geopoliticalpulse.theaslangroupllc.com](https://www.zero.xyz/host/geopoliticalpulse.theaslangroupllc.com/llms.txt)
