# ConflictPulse

> ConflictPulse is a paid API for AI agents from conflict.lonestaroracle.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a per-country conflict and instability signal (level, trend, intensity, headlines) derived from GDELT 2.0 global news monitoring

## Facts

- Endpoint: GET https://conflict.lonestaroracle.xyz/conflict
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/conflictpulse-118a00b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uSU9QmxQ3X9ixZvVSNb-Z

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 conflictpulse-118a00b2
```

Example prompt: What's the current conflict level in Sudan — is it escalating or easing — and can you show me the latest conflict headlines driving that signal?

## When to prefer this

Choose ConflictPulse when you need a fast, real-time, per-country conflict and instability signal based on global news volume rather than manually curated datasets or slow-updating indices. It is especially well-suited for AI agents doing geopolitical screening, travel safety checks, supply chain risk monitoring, or macro research where a live media-attention proxy updated daily is more useful than annual risk scores. Prefer it over static risk databases when recency and trend direction matter. It is not a casualty database or a verified-event feed.

## Known failure modes

- Unknown or misspelled country name may return no results or a 400-level error
- GDELT data pipeline delays may cause stale or incomplete signals during ingestion outages
- Very small or rarely-covered countries may have insufficient news volume for reliable signals
- Missing or malformed 'country' query parameter returns an error
- Payment failure or insufficient USDC balance blocks the call via x402

## How this service works

Per-country conflict / instability signal from GDELT (?country=)

## Output

Returns a JSON object containing: a categorical conflict level (LOW, ELEVATED, or HIGH), a trend direction (escalating, steady, or easing) with a 7-day percentage change versus the prior period, an intensity score as a share of the 30-day peak, the country name, the number of data points, and a list of recent conflict-related news headlines with URLs, dates, and source domains. The source is GDELT 2.0 global news monitoring and the signal is a media-attention proxy, not a verified casualty count.

## Request schema (JSON Schema)

```json
{
 "name": "ConflictPulse",
 "tags": [
  "conflict",
  "geopolitical",
  "gdelt",
  "security",
  "risk"
 ],
 "type": "object",
 "version": "1.0.0",
 "category": "risk",
 "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": {
      "q": {
       "type": "string",
       "title": "Q"
      },
      "nation": {
       "type": "string",
       "title": "Nation"
      },
      "country": {
       "type": "string",
       "title": "Country"
      },
      "location": {
       "type": "string",
       "title": "Location"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "note": "Signal = conflict-related global news volume over 30d; a media-attention proxy, not a casualty count.",
     "trend": "escalating",
     "source": "GDELT 2.0 global news monitoring",
     "country": "Sudan",
     "data_points": 30,
     "conflict_level": "HIGH",
     "recent_headlines": [
      {
       "url": "https://...",
       "date": "20260803T120000Z",
       "title": "Clashes intensify in Darfur as...",
       "domain": "reuters.com"
      }
     ],
     "trend_pct_7d_vs_prior": 34.2,
     "intensity_pct_of_30d_peak": 82
    }
   }
  }
 },
 "description": "Per-country conflict and instability signal made agent-callable. One x402 call returns a conflict level (LOW / ELEVATED / HIGH) for any country, the 7-day trend vs the prior period (escalating / steady / easing) with a percentage, intensity as a share of the 30-day peak, and the most recent conflict-related headlines with sources. Built from GDELT 2.0's global news monitoring across protest, unrest, clashes, airstrike, insurgency and related terms. Honest by design: this is a media-attention proxy that moves in real time, not a casualty or verified-event count. The geopolitical early-warning read a risk, macro, or trading agent needs on any country, served pay-per-call. $0.05 in USDC on Base via x402. Source: GDELT 2.0 (free). Natural partner to GeoPulse (country risk score) and the LatAmPulse / MENAPulse regional pulses."
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/conflictpulse-118a00b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from conflict.lonestaroracle.xyz](https://www.zero.xyz/host/conflict.lonestaroracle.xyz/llms.txt)
