# agent.connskill.com Google News Search

> agent.connskill.com Google News Search is a paid API for AI agents from agent.connskill.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns Google News results for a keyword, including headlines, source, URL, snippet, and timestamp

## Facts

- Endpoint: POST https://agent.connskill.com/v1/news-search
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-connskill-com-google-news-search-0c7933ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Cc1kU8ZRYJbsTquCQByQK

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 agent-connskill-com-google-news-search-0c7933ef -d '<json body>'
```

Example prompt: Search Google News for the latest headlines about 'artificial intelligence regulation' in English for the United States and give me the top results with source, URL, and when they were published.

## When to prefer this

Choose this endpoint when you need structured, timestamped Google News results (headline, source, URL, snippet) for a specific keyword, especially with language or geographic filtering (e.g., German-language news or US-only news). Prefer it over general web search endpoints when the use case is specifically news monitoring, press coverage tracking, or media research. It is particularly useful for agents that need machine-readable news data rather than raw SERP results.

## Known failure modes

- Missing required 'keyword' field returns a 400 validation error
- Invalid language_code or location_code may return empty results or an error
- Very niche or obscure keywords may return few or no results
- Rate limiting or payment failure (x402) blocks the request
- Google News may have no recent results for a very specific query

## How this service works

Google News results for a keyword: headlines with source, URL, snippet and timestamp

## Output

A structured list of Google News articles matching the keyword, each containing the headline, news source name, article URL, a short snippet/summary, and publication timestamp. Results are filtered by language and location as specified.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "keyword"
 ],
 "properties": {
  "keyword": {
   "type": "string",
   "description": "Search term. A one-element list is also accepted; its first entry is used."
  },
  "language_code": {
   "type": "string",
   "description": "ISO language code, defaults to de"
  },
  "location_code": {
   "type": "number",
   "description": "Location code (2276 = Germany, 2840 = United States)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "description": "Google News results for a keyword: headlines with source, URL, snippet and timestamp"
}
```

## More

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