# news-search

> news-search is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Search global news articles by keyword via Google News, returning titles, sources, and publication times

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/news-search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-search-d04f8db4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IArDpvEVelbrh-ncyn6Z7

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 news-search-d04f8db4
```

Example prompt: Can you search for the latest news articles about the US Federal Reserve interest rate decision and show me the headlines, sources, and when they were published?

## When to prefer this

Choose this endpoint when you need fast, keyword-based global news search with structured metadata (title, source, time) and don't need full article body text. It is backed by Google News, making it suitable for broad international coverage. Use the sibling web-fetch endpoint if you need full article content after finding articles here.

## Known failure modes

- Empty results if keyword is too obscure or misspelled
- Rate limiting or payment failure if USDC balance is insufficient (x402 payment required per call)
- No schema-defined query parameters documented — exact keyword parameter name may need to be inferred
- Results may be stale if Google News index hasn't refreshed recently
- Non-English queries may return fewer results depending on regional news coverage

## How this service works

News Search — Google News search: search global news by keyword, returns title, source, and time.

## Output

A list of news articles matching the keyword query, each containing the article title, news source name, and publication timestamp, sourced from Google News global index.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "required": []
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "count": 102,
   "topic": "BUSINESS",
   "source": "Google News",
   "headlines": [
    {
     "link": "https://news.google.com/rss/articles/CBMipgFBVV95cUxQMU95TFhjeUdscnZoOElsdnRhRmV5eTNEZ0dpa3VRTmFCdEVmSTRNOGIyWjJOcTl1aFo",
     "title": "How a small Israeli startup was linked to rogue AI hacks at OpenAI, Anthropic and Meta - CNBC",
     "source": "CNBC",
     "published": "Sun, 09 Aug 2026 11:31:42 GMT"
    },
    {
     "link": "https://news.google.com/rss/articles/CBMipgFBVV95cUxQMU95TFhjeUdscnZoOElsdnRhRmV5eTNEZ0dpa3VRTmFCdEVmSTRNOGIyWjJOcTl1aFo",
     "title": "How a small Israeli startup was linked to rogue AI hacks at OpenAI, Anthropic and Meta - CNBC",
     "source": "CNBC",
     "published": "Sun, 09 Aug 2026 11:31:42 GMT"
    }
   ]
  },
  "source": "gnews",
  "data_type": "媒体",
  "collected_at": "2026-08-09T18:12:37Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-search-d04f8db4/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
