# DataPipe API — Top News Search

> DataPipe API — Top 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).

Fetches top news articles matching a given query string, paid per-call via x402 on Base chain

## Facts

- Endpoint: POST https://v2kidnapi.vercel.app/api/news/top
- 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-top-news-search-64ca02a8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gEgRQJ-7pZe9VdD1TZmYj

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-top-news-search-64ca02a8 -d '<json body>'
```

Example prompt: What are the top news stories right now about the US Federal Reserve interest rate decisions?

## When to prefer this

Use this endpoint when you need to retrieve top/trending news articles for a specific query and are already using the DataPipe API ecosystem with x402 Base chain payments; prefer over generic web scraping when structured news results are needed quickly at low per-call cost

## Known failure modes

- Missing required 'query' field returns validation error
- Empty or overly broad query may return irrelevant results
- Payment failure via x402 protocol blocks the request
- Network timeout from upstream news source
- Vercel cold start may add latency on first call

## How this service works

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

## Output

A JSON object with a 'success' boolean and a 'data' object containing top news articles matching the query, likely including headlines, sources, and article metadata

## 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-top-news-search-64ca02a8/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)
