# x402-seller Conflict & Security News Search (GDELT)

> x402-seller Conflict & Security News Search (GDELT) is a paid API for AI agents from x402-seller.onrender.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns recent global news article metadata matching a conflict or security-related search query, aggregated from worldwide news monitoring via the GDELT Project.

## Facts

- Endpoint: GET https://x402-seller.onrender.com/world/conflict-news
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-seller-conflict-security-news-search-gdelt-7f1eb545
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OJSc9b-2l5f8EVdmhIK5g

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 x402-seller-conflict-security-news-search-gdelt-7f1eb545
```

Example prompt: Can you pull the latest global news coverage on the conflict in Sudan — give me up to 20 recent articles with their titles, sources, and links?

## When to prefer this

Use this endpoint when you need a quick, neutrally aggregated snapshot of worldwide mainstream news coverage on a specific conflict, country, or security topic, and only need article metadata (title, source, date, link) rather than full text. Prefer this over general web search when you want GDELT's broad multilingual global news monitoring rather than a single search engine's index. Not suitable for non-conflict general news or when full article content is required.

## Known failure modes

- Missing required 'query' parameter returns an error
- Query yields zero results if search term is too obscure or misspelled
- Limit exceeding 25 is capped or rejected
- GDELT upstream latency may cause slow or timeout responses
- Service on Render.com may be cold-started, causing initial delay
- Payment of 0.001 USDC required per call via x402 protocol; unpaid requests are rejected

## How this service works

Recent global news coverage matching a conflict/security-related search query (e.g. a country, region, or conflict name), aggregated from worldwide news monitoring. Returns article metadata (title, source, date, link) only — not full article text. Sourced from the GDELT Project. Neutral aggregation of mainstream reporting; does not editorialize.

## Output

A JSON object containing the search query echo, total article count, source attribution (GDELT Project), and an array of article metadata objects each with title, source name, publication date, and URL link. Full article text is not included.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "query"
     ],
     "properties": {
      "limit": {
       "type": "string",
       "description": "Max number of results (max 25)"
      },
      "query": {
       "type": "string",
       "description": "Search keywords (e.g. a country, region, or conflict name)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "count": {
       "type": "number"
      },
      "query": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "articles": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-seller-conflict-security-news-search-gdelt-7f1eb545/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-seller.onrender.com](https://www.zero.xyz/host/x402-seller.onrender.com/llms.txt)
