# WhatChuNeed LLM Search

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

Performs a web search query and returns synthesized results with URLs, titles, and snippets via LLM-powered summarization

## Facts

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

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-llm-search-70bbc01e -d '<json body>'
```

Example prompt: Search for 'best open-source LLMs in 2025' and give me a synthesized summary of what you find, along with the top result URLs.

## When to prefer this

Choose this endpoint when you need both raw search result links (URL, title, snippet) AND an LLM-synthesized summary in a single call, paid per-use via crypto microtransaction. Ideal for agents that need grounded, cited answers without maintaining a search API subscription.

## Known failure modes

- Empty or vague query may return poor results or empty results array
- Payment failure via x402 protocol results in 402 response and no data
- Synthesis field may be empty if no relevant results are found
- Rate limiting or service downtime on the vercel.app backend
- Query too long or malformed JSON may result in 400 bad request

## 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 JSON object containing a 'results' array (each item has url, title, and snippet fields) and a 'synthesis' string — an LLM-generated summary that distills the top results into a coherent answer.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "query"
 ],
 "properties": {
  "query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "results": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "url": {
      "type": "string"
     },
     "title": {
      "type": "string"
     },
     "snippet": {
      "type": "string"
     }
    }
   }
  },
  "synthesis": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-llm-search-70bbc01e/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)
