# GeopoliticalPulse Conflict Scan

> GeopoliticalPulse Conflict Scan is a paid API for AI agents from geopoliticalpulse.theaslangroupllc.com, paid per call via x402, $0.2/call, status unknown (last checked 2026-09-16).

Maps armed conflicts and assesses escalation risk for any region using ACLED and GDELT data, including casualty trends and forward escalation outlook

## Facts

- Endpoint: GET https://geopoliticalpulse.theaslangroupllc.com/api/geopolitical/conflict-scan
- Price: $0.2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geopoliticalpulse-conflict-scan-1467d405
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KBedwk4glWax5cTUXB4-Y

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-conflict-scan-1467d405
```

Example prompt: Run a conflict scan for the eastern DRC region — I need the current armed-conflict map, casualty trends, and your forward escalation read so I can update our security risk brief.

## When to prefer this

Use this endpoint when you need a focused armed-conflict assessment with casualty data and escalation trajectory for a specific region, particularly when ACLED conflict event data and GDELT sentiment monitoring are desired inputs. Prefer this over general country-risk or situation-assessment endpoints when the specific analytical need is active armed conflict, battle events, and near-term escalation forecasting rather than broader geopolitical or governance risk.

## Known failure modes

- Region not recognized or too vague — returns 400 with region parsing error
- ACLED or GDELT data unavailable for specified region — returns partial data with coverage warning
- Payment not processed — returns 402 requiring x402 payment of 0.2 USDC
- Rate limit exceeded — returns 429
- Server error during data aggregation — returns 500

## How this service works

Real-time geopolitical intelligence for investors, compliance teams, and AI agents.

## Output

Returns an armed-conflict map for the specified region, including active conflict locations and actors, casualty trend data sourced from ACLED, GDELT-based monitoring signals, and a forward-looking escalation assessment indicating whether the situation is likely to intensify, stabilize, or de-escalate.

## 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": {
      "days": {
       "type": "string",
       "description": "Lookback window in days | 30 | 60 | 90"
      },
      "lang": {
       "type": "string",
       "description": "Response language (ISO 639-1) | en | es | fr | ar | pt | ru"
      },
      "region": {
       "type": "string",
       "description": "Country or region to scan | Ukraine | Gaza | Sudan | Myanmar | Sahel | Yemen | Ethiopia"
      }
     }
    }
   },
   "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": {
  "active_conflicts": [
   {
    "name": "RSF vs SAF Civil War",
    "status": "active",
    "parties": [
     "Sudanese Armed Forces",
     "Rapid Support Forces"
    ],
    "estimated_casualties_90d": "3000-5000"
   }
  ],
  "region_or_country": "Sudan",
  "analyst_assessment": "Sudan faces one of the most severe humanitarian crises globally...",
  "conflict_intensity": "EXTREME",
  "escalation_risk_90d": "HIGH",
  "humanitarian_situation": {
   "aid_access": "RESTRICTED",
   "displaced_persons": "8500000"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/geopoliticalpulse-conflict-scan-1467d405/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)
