# GDELT News Intelligence API — Translingual News Search

> GDELT News Intelligence API — Translingual News Search is a paid API for AI agents from news-x402.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Searches global news articles across multiple languages on a given topic using GDELT, returning results grouped by language

## Facts

- Endpoint: POST https://news-x402.com/news/translingual
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gdelt-news-intelligence-api-translingual-news-search-4979b20e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Op1cmgVgfwonBZ3_dHs7h

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 gdelt-news-intelligence-api-translingual-news-search-4979b20e -d '<json body>'
```

Example prompt: Search global news for 'AI regulation' across all languages over the last 48 hours and show me what different language outlets are reporting.

## When to prefer this

Use this endpoint when you need to see how a topic is being covered across multiple languages and countries simultaneously, rather than English-only news. Ideal for monitoring international press coverage, comparing narratives across regions, or finding non-English sources on a global topic. Prefer over single-language endpoints when language diversity and geographic breadth matter.

## Known failure modes

- Missing required 'topic' query parameter returns an error
- Hours value outside 1–72 range returns a validation error
- No articles found for obscure topics returns empty by_language array
- Payment failure or insufficient USDC balance blocks access via x402
- GDELT data lag may mean very recent events (last few minutes) are not yet indexed

## How this service works

AI-friendly JSON API for global news intelligence. Built on GDELT (free public source), optimized for AI agents — clean responses, 5 use-case endpoints, parallel-aggregated entity graphs, no rate limits, no API keys. Pay-per-query in USDC on Base mainnet via x402.

## Output

A JSON object with the search topic, the lookback window in hours, and a 'by_language' array where each entry contains the language name, article count, and a list of articles (each with URL, title, source, language, image URL, published date, source country, and sentiment score).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "hours": 24,
   "topic": "artificial intelligence"
  }
 }
}
```

## 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",
     "required": [
      "topic"
     ],
     "properties": {
      "hours": {
       "type": "integer",
       "maximum": 72,
       "minimum": 1,
       "description": "Lookback window in hours (default 24, max 72)"
      },
      "topic": {
       "type": "string",
       "description": "Search query"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "topic",
      "timespan_hours",
      "by_language"
     ],
     "properties": {
      "topic": {
       "type": "string"
      },
      "by_language": {
       "type": "array",
       "items": {
        "type": "object",
        "required": [
         "language",
         "article_count",
         "articles"
        ],
        "properties": {
         "articles": {
          "type": "array",
          "items": {
           "type": "object",
           "properties": {
            "url": {
             "type": "string"
            },
            "title": {
             "type": "string"
            },
            "source": {
             "type": "string"
            },
            "language": {
             "type": "string"
            },
            "image_url": {
             "type": [
              "string",
              "null"
             ]
            },
            "published_at": {
             "type": [
              "string",
              "null"
             ]
            },
            "first_seen_at": {
             "type": [
              "string",
              "null"
             ]
            },
            "source_country": {
             "type": "string"
            },
            "sentiment_score": {
             "type": [
              "number",
              "null"
             ]
            }
           }
          }
         },
         "language": {
          "type": "string"
         },
         "article_count": {
          "type": "int
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "topic": "AI regulation",
  "by_language": [
   {
    "articles": [
     {
      "url": "...",
      "title": "...",
      "source": "...",
      "language": "English",
      "image_url": null,
      "published_at": "...",
      "source_country": "US",
      "sentiment_score": null
     }
    ],
    "language": "English",
    "article_count": 12
   }
  ],
  "timespan_hours": 48
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gdelt-news-intelligence-api-translingual-news-search-4979b20e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from news-x402.com](https://www.zero.xyz/host/news-x402.com/llms.txt)
