# Arch Tools News Search

> Arch Tools News Search is a paid API for AI agents from archtools.dev, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-15).

Searches recent news articles by keyword query and returns a ranked list of matching articles

## Facts

- Endpoint: POST https://archtools.dev/v1/tools/news-search
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arch-tools-news-search-1510fb5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y-20zHVGOIsTYEotSZ2WC

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 arch-tools-news-search-1510fb5f -d '<json body>'
```

Example prompt: Search for the latest news about the Federal Reserve interest rate decision — give me up to 15 English articles.

## When to prefer this

Choose this endpoint when an AI agent needs to retrieve fresh, real-world news articles based on a keyword or topic query, especially when paired with other Arch Tools endpoints like entity extraction or sentiment analysis for a news-processing pipeline. It is well-suited for agents that need live news context rather than static web pages, and supports multilingual queries via ISO-639-1 codes.

## Known failure modes

- Empty query string returns validation error
- Unsupported or invalid ISO-639-1 language code may return no results or an error
- Very obscure topics may return zero articles
- Rate limiting or payment failure returns 402 or 429 error
- Limit value out of acceptable range may be clamped or rejected

## How this service works

Arch Tools — news-search

## Output

A JSON object containing a list of news articles matching the query, likely including fields such as article title, URL, publication date, source, and a brief summary or snippet, limited to the requested number of results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "description": "Maximum number of articles to return"
  },
  "query": {
   "type": "string",
   "description": "News search query"
  },
  "language": {
   "type": "string",
   "default": "en",
   "description": "ISO-639-1 language code"
  }
 }
}
```

## More

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