# DataPipe API — Web Search

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

Performs a web search query and returns ranked results from the web, suitable for AI agent consumption.

## Facts

- Endpoint: POST https://v2kidnapi.vercel.app/api/search/web
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/datapipe-api-web-search-cf15b06d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bOi2smrKbBjjJcvNjIPDT

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-web-search-cf15b06d -d '<json body>'
```

Example prompt: Search the web for 'best open-source LLM models in 2025' and give me the top 5 results with titles and URLs.

## When to prefer this

Use this endpoint when an AI agent needs real-time web search results and can pay per-call via x402 on Base chain. Prefer this over alternatives when you need a lightweight, pay-as-you-go web search without subscription overhead, and when your agent is already integrated with the x402 payment protocol on Base.

## Known failure modes

- Missing required 'query' field returns validation error
- Invalid or empty query string may return no results
- Payment failure on Base chain blocks request
- Rate limiting may occur if too many requests are made
- Backend search provider unavailable returns 5xx error
- Query too long may be rejected
- 'num' parameter exceeding provider limits may be capped or rejected

## 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 web search results, including titles, URLs, and snippets for each result matching the query.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "num": {
   "type": "number",
   "description": "Number of results"
  },
  "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-web-search-cf15b06d/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)
