# whatchuneed Alpha Search

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

Searches across 320+ pay-per-call API endpoints by query to discover relevant capabilities across accommodation, LLM, crypto, medical, finance, and more

## Facts

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

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-alpha-search-95f7f6ef -d '<json body>'
```

Example prompt: Search the whatchuneed API marketplace for endpoints related to 'hotel booking' so I can find what accommodation capabilities are available.

## When to prefer this

Use this endpoint when an AI agent needs to dynamically discover which specific API capabilities are available within the whatchuneed ecosystem before calling them, or when building meta-agent workflows that need to route tasks to the right sub-endpoint. Prefer this over hardcoded endpoint lists when the available catalog may change.

## Known failure modes

- Empty results array if query matches no endpoints
- Payment failure if USDC balance is insufficient for $0.01 per-call fee
- Invalid request if 'query' field is missing from POST body
- Timeout if marketplace index is unavailable

## 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 an array of matching endpoint results, each with name, type, symbol, and exchange fields, representing API capabilities that match the search query across the whatchuneed multi-domain marketplace.

## 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": {
     "name": {
      "type": "string"
     },
     "type": {
      "type": "string"
     },
     "symbol": {
      "type": "string"
     },
     "exchange": {
      "type": "string"
     }
    }
   }
  }
 }
}
```

## More

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