# WhatChuNeed Web Search

> WhatChuNeed Web Search is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-15).

Performs a web search query and returns results via a pay-per-call API powered by the x402 protocol

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/search/web
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-web-search-162cc501
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sIEhnKw7maSXvjqg9dShB

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 whatchuneed-web-search-162cc501 -d '<json body>'
```

Example prompt: Search the web for the latest news about quantum computing breakthroughs in 2024 and summarize what you find.

## When to prefer this

Choose this endpoint when you need live web search results on a pay-per-call basis without a subscription, especially within an agentic workflow using the x402 micropayment protocol. Prefer it when you want lightweight, on-demand web lookups billed per use in USDC rather than committing to a monthly API plan.

## Known failure modes

- Invalid or empty input string returns an error status
- Payment failure via x402 protocol results in 402 response blocking the call
- Overly vague queries may return low-relevance results
- Rate limiting or service unavailability may return non-200 responses
- Malformed request body missing required 'input' field returns a validation error

## How this service works

320+ pay-per-call API endpoints across accommodation, LLM, code execution, crypto, medical, finance, and more. One API, one payment. Powered by x402 protocol.

## Output

Returns a result object containing web search results relevant to the input query, along with a status string indicating success or failure of the request.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

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