# TavilyX News Search — Paid RAG-Synthesized News API

> TavilyX News Search — Paid RAG-Synthesized News API is a paid API for AI agents from searchtav.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Searches recent news articles using Tavily and synthesizes results via NVIDIA NIM RAG, returning ranked news results for a given query and time window.

## Facts

- Endpoint: GET https://searchtav.vercel.app/search/news
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tavilyx-news-search-paid-rag-synthesized-news-api-ddc185d0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mAzt4m5ZDj_IzmfEoY59q

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 tavilyx-news-search-paid-rag-synthesized-news-api-ddc185d0
```

Example prompt: Search TavilyX for news about the latest Federal Reserve interest rate decisions from the past 7 days and give me up to 10 results.

## When to prefer this

Choose this endpoint when you need up-to-date, web-scraped news results with RAG-synthesized context rather than static knowledge. It is ideal for agents needing recent headlines, breaking news, or current events on a specific topic, especially when freshness (lookback in days) and result count matter. Prefer this over general web search APIs when you want Tavily-quality news retrieval combined with NVIDIA NIM synthesis in a single paid call via x402 on Base.

## Known failure modes

- Missing required 'q' parameter returns a 400 or validation error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Query returns zero results if no recent news matches within the specified day window
- Invalid 'days' or 'limit' values (e.g. negative integers) may cause a 400 error
- Upstream Tavily or NVIDIA NIM service unavailability causes a 502 or 503 error
- Rate limiting or payment processing failure on Base blockchain delays response

## How this service works

Paid web search + RAG synthesis API. Tavily + NVIDIA NIM + x402 on Base.

## Output

Returns a JSON object containing the echoed query string and an array of news results synthesized via Tavily search and NVIDIA NIM RAG — each result typically includes title, URL, snippet, and relevance metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "q"
 ],
 "properties": {
  "q": {
   "type": "string",
   "description": "News query"
  },
  "days": {
   "type": "integer",
   "description": "Look back N days"
  },
  "limit": {
   "type": "integer",
   "description": "Max results"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string"
  },
  "results": {
   "type": "array"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tavilyx-news-search-paid-rag-synthesized-news-api-ddc185d0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from searchtav.vercel.app](https://www.zero.xyz/host/searchtav.vercel.app/llms.txt)
