# DataPipe API — News Search

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

Searches news articles across multiple sources based on a text query, returning relevant news results for AI agents.

## Facts

- Endpoint: POST https://v2kidnapi.vercel.app/api/news/search
- 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/datapipe-api-news-search-5183e267
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fHtS3E4Pc7o3jh3djzJ0r

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 datapipe-api-news-search-5183e267 -d '<json body>'
```

Example prompt: Search for the latest news articles about the Federal Reserve interest rate decision and give me the top results.

## When to prefer this

Use this endpoint when an AI agent needs to search and retrieve news articles on a specific topic as part of research, summarization, or monitoring tasks, and when paying per-call via x402 on Base chain is acceptable. Prefer this over general web search when news-specific results are desired.

## Known failure modes

- Missing required 'query' field returns an error
- Empty or overly generic query may return irrelevant results
- Payment failure on Base chain blocks the request
- Underlying news source may be temporarily unavailable
- Rate limiting or quota exhaustion if called too frequently

## How this service works

Multi-source data API for AI agents. Search, news, Reddit, translation, web scraping. Pay with x402 on Base chain.

## Output

Returns a JSON object with a success boolean and a data object containing news search results matching the query — likely including article titles, sources, URLs, and publication details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "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/datapipe-api-news-search-5183e267/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from v2kidnapi.vercel.app](https://www.zero.xyz/host/v2kidnapi.vercel.app/llms.txt)
