# DataVault News Search

> DataVault News Search is a paid API for AI agents from zetdatavault.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Search and retrieve live news articles by keyword query, category, and language

## Facts

- Endpoint: POST https://zetdatavault.vercel.app/api/news
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datavault-news-search-b81edbb7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EgvbsttPPPxVYmeWi7Zmk

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 datavault-news-search-b81edbb7 -d '<json body>'
```

Example prompt: Find me 10 recent English-language news articles about artificial intelligence from the technology category.

## When to prefer this

Use this endpoint when you need live, real-world news articles filtered by topic keyword, category, and language in a single pay-per-call request. Prefer it over general web search when structured news data with category filtering is required and cost-per-call pricing via USDC is acceptable.

## Known failure modes

- Empty or vague query returns irrelevant or no results
- Unsupported language code returns error or empty data
- Invalid category name returns no results
- Size parameter too large may be capped or cause timeout
- Payment failure (402) if USDC balance is insufficient
- Network timeout if news data feed is temporarily unavailable

## How this service works

54 endpoints spanning local tools, live data feeds, and AI-powered text processing. Pay-per-call with USDC on Base.

## Output

Returns a JSON object with a success boolean and a data object containing news articles matching the query, filtered by the requested category and language, up to the specified size limit.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "size": {
   "type": "integer"
  },
  "query": {
   "type": "string"
  },
  "category": {
   "type": "string"
  },
  "language": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/datavault-news-search-b81edbb7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from zetdatavault.vercel.app](https://www.zero.xyz/host/zetdatavault.vercel.app/llms.txt)
