# toolcall.click News Search

> toolcall.click News Search is a paid API for AI agents from toolcall.click, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns deduplicated recent news headlines with source, link, and publish date for any company, topic, or keyword query over a configurable 1–30 day window.

## Facts

- Endpoint: GET https://toolcall.click/t/news/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/toolcall-click-news-search-9171e282
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y9IaN7qOfyokLZv3zT3Vo

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 toolcall-click-news-search-9171e282
```

Example prompt: Find me recent news headlines about Nvidia from the past 14 days — deduplicated titles with sources and links.

## When to prefer this

Choose this endpoint when you need fast, deduplicated recent news headlines for a company or topic without managing an API key — especially in agentic workflows where micro-payment via x402 is acceptable and freshness (up to 30-day window) matters over full article content.

## Known failure modes

- Missing required 'q' parameter returns an error
- 'days' value outside 1–30 range is rejected
- Payment failure via x402 (insufficient balance or wrong token) blocks the response
- No results found for obscure or highly specific queries
- Rate limiting or connectivity issues with the upstream news index

## How this service works

Recent news headlines for any company, topic or query: deduplicated titles with source, link and publish date from a broad news index. Window configurable 1-30 days. JSON response. $0.01 USDC per call, pay via x402, no API key.

## Output

A JSON array of deduplicated news articles matching the query, each containing the headline title, source name, article URL, and publish date, sourced from a broad news index.

## 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, company or topic"
      },
      "days": {
       "type": "integer",
       "maximum": 30,
       "minimum": 1,
       "description": "Lookback window in days, default 7"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "count": 2,
  "items": [
   {
    "link": "https://...",
    "title": "Example headline",
    "source": "Reuters",
    "publishedAt": "Tue, 14 Jul 2026 08:00:00 GMT"
   }
  ],
  "query": "OpenAI"
 }
}
```

## More

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