Per-country conflict / instability signal from GDELT (?country=)
Per-country conflict / instability signal from GDELT (?country=)
50000 (raw units)
price
4
calls / 30d
1
unique payers
2026-09-16
updated
Provider
conflict.lonestaroracle.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52Ab53912D37759B2ad364f22dD06B16714b6C06",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "3nmeVj5m9Uq2hSTfsVsn3tJMHRJQNMKR1AjzyUJbrSgw",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"country": "Japan",
"location": "Japan",
"nation": "Japan",
"q": "nvidia"
},
"type": "http"
},
"output": {
"example": {
"conflict_level": "HIGH",
"country": "Sudan",
"data_points": 30,
"intensity_pct_of_30d_peak": 82,
"note": "Signal = conflict-related global news volume over 30d; a media-attention proxy, not a casualty count.",
"recent_headlines": [
{
"date": "20260803T120000Z",
"domain": "reuters.com",
"title": "Clashes intensify in Darfur as...",
"url": "https://..."
}
],
"source": "GDELT 2.0 global news monitoring",
"trend": "escalating",
"trend_pct_7d_vs_prior": 34.2
},
"format": "json",
"type": "object"
}
},
"schema": {
"category": "risk",
"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.",
"name": "ConflictPulse",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"country": {
"title": "Country",
"type": "string"
},
"location": {
"title": "Location",
"type": "string"
},
"nation": {
"title": "Nation",
"type": "string"
},
"q": {
"title": "Q",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"conflict_level": "HIGH",
"country": "Sudan",
"data_points": 30,
"intensity_pct_of_30d_peak": 82,
"note": "Signal = conflict-related global news volume over 30d; a media-attention proxy, not a casualty count.",
"recent_headlines": [
{
"date": "20260803T120000Z",
"domain": "reuters.com",
"title": "Clashes intensify in Darfur as...",
"url": "https://..."
}
],
"source": "GDELT 2.0 global news monitoring",
"trend": "escalating",
"trend_pct_7d_vs_prior": 34.2
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"tags": [
"conflict",
"geopolitical",
"gdelt",
"security",
"risk"
],
"type": "object",
"version": "1.0.0"
}
},
"bc_kg64bd18": {}
}Use it
curl
curl "https://conflict.lonestaroracle.xyz/conflict" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://conflict.lonestaroracle.xyz/conflict");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://conflict.lonestaroracle.xyz/conflict")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/5117.json, and this resource appears in /discovery/resources and /discovery/search.