# AgentsTools News Search

> AgentsTools News Search is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Searches web news engines (Bing/DuckDuckGo/Yahoo) by keyword and returns dated headlines with title, URL, snippet, source, and image, with optional freshness, region, and safesearch filters.

## Facts

- Endpoint: GET https://api.agentstools.dev/search/news
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstools-news-search-cdbb13b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u1LD3UjvEMtEFfO49RT98

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 agentstools-news-search-cdbb13b0
```

Example prompt: Search for the latest news about the US Federal Reserve interest rate decision from the past week — up to 10 results, US English region, safesearch moderate.

## When to prefer this

Choose this endpoint when you need keyword-based news search across multiple engines with freshness filtering (past day/week/month/year) and regional targeting, especially when you want raw headlines and snippets rather than a synthesized summary. Prefer it over the RAG-based situation-brief endpoint when you want unprocessed article metadata rather than a narrative answer.

## Known failure modes

- No results returned for obscure or misspelled query keywords
- Backend engine unavailable (Bing/DuckDuckGo/Yahoo outage)
- max_results exceeds allowed maximum of 20, returning validation error
- Invalid region locale string causes fallback to default or error
- Payment not processed (x402) resulting in 402 response

## How this service works

Keyword news search across web news engines (Bing/DuckDuckGo/Yahoo via ddgs). Returns dated headlines with title/url/snippet/source/image + freshness/region/safesearch filters.

## Output

An array of news articles, each containing a title, URL, snippet/description, source name, publication date, and image URL, filtered by the requested freshness, region, and safesearch settings.

## 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": [
      "query"
     ],
     "properties": {
      "query": {
       "type": "string"
      },
      "region": {
       "type": "string",
       "description": "Locale like 'us-en', 'uk-en', 'de-de' (default us-en)"
      },
      "backend": {
       "type": "string",
       "description": "auto (default multi-engine) or a specific news engine: bing/duckduckgo/yahoo, or a CSV of them"
      },
      "timelimit": {
       "enum": [
        "d",
        "w",
        "m",
        "y"
       ],
       "type": "string",
       "description": "Freshness/time filter: past day/week/month/year"
      },
      "safesearch": {
       "enum": [
        "on",
        "moderate",
        "off"
       ],
       "type": "string",
       "description": "SafeSearch level (default moderate)"
      },
      "max_results": {
       "type": "integer",
       "maximum": 20,
       "minimum": 1
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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