# x402node News Search via Google News

> x402node News Search via Google News is a paid API for AI agents from api.x402node.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-13).

Searches recent news articles using Google News and returns titles, sources, links, snippets, and publication timestamps.

## Facts

- Endpoint: GET https://api.x402node.dev/search/news
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-x402node-dev-74da3827
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5-91zkeiepoG9n17zl9E1

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 api-x402node-dev-74da3827
```

Example prompt: Find me the 10 most recent English-language news articles about the US Federal Reserve interest rate decision — I need titles, sources, and links.

## When to prefer this

Use this endpoint when an agent needs up-to-date news articles on any topic, especially for news monitoring workflows, current events research, or trend analysis. Prefer this over general web search when the task specifically requires journalistic news content with structured metadata (title, source, snippet, publish date). Best suited for real-time or near-real-time news retrieval tasks that need to be repeated programmatically.

## Known failure modes

- No results found for obscure or very niche queries — returns empty array
- Query parameter missing — returns 400 bad request
- Google News rate limiting or upstream availability issues — may return 503 or timeout
- Invalid language code — may return no results or error
- Limit parameter out of expected range — may default or error

## How this service works

Search recent news articles via Google News. Returns articles with title, source, link, snippet, published_at. Use ?q=YOUR_QUERY and lang=en and limit=10. Built for news monitoring agents, trend analysis, and current events research, news api, news search, latest news headlines Accepts payment on Base or Solana — either network works.

## Output

Returns a list of news articles from Google News, each containing the article title, source name, direct URL link, a short text snippet/summary, and the published_at datetime. Typically returns up to the requested limit (default 10) of the most recent matching results.

## 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": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query (required)"
      },
      "lang": {
       "type": "string",
       "description": "Lang (optional)"
      },
      "limit": {
       "type": "string",
       "description": "Max results (optional)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-x402node-dev-74da3827/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.x402node.dev](https://www.zero.xyz/host/api.x402node.dev/llms.txt)
