# whatchuneed Token Search

> whatchuneed Token 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).

Search for cryptocurrency tokens by name, symbol, or keyword and retrieve basic market metadata including market cap rank.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/token/search
- 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-token-search-1b6acbb0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lm8iIzkwTsaz7tb7SYq7D

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-token-search-1b6acbb0 -d '<json body>'
```

Example prompt: Search for cryptocurrency tokens matching 'solana' and tell me their market cap rank and symbol.

## When to prefer this

Use this endpoint when you need to quickly look up cryptocurrency tokens by name or symbol and retrieve their market cap rank, especially in a pay-per-call context via x402 protocol. Prefer this over broader market data APIs when you need lightweight token identification without full OHLCV or historical data.

## Known failure modes

- Empty results array if no tokens match the query string
- Missing or null market_cap_rank for tokens not ranked in top markets
- 400 or validation error if 'query' field is absent from the request body
- Payment failure (402) if x402 protocol payment is not correctly attached
- Ambiguous results when query matches many tokens (e.g. searching 'b')

## 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

An array of matching cryptocurrency token objects, each containing the token's ID, name, symbol, and market cap rank. Results are ordered by relevance to the search query.

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

## More

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