# whatchuneed LLM Batch Processing

> whatchuneed LLM Batch Processing is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Submits a batch of items to be processed by a large language model in a single pay-per-call API request, returning structured results for each item.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/llm/batch
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-llm-batch-processing-bb9d4729
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_V-rWR333dC4PcxW5S8CUz

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-batch-processing-bb9d4729 -d '<json body>'
```

Example prompt: Process this list of 10 customer reviews using the task 'classify sentiment as positive, negative, or neutral' and give me back the results for each one in a single batch call.

## When to prefer this

Choose this endpoint when you need to apply a single LLM task instruction uniformly across multiple inputs in one API call, avoiding the overhead of many individual requests. It is especially useful for bulk classification, extraction, or summarization workflows where cost efficiency (single $0.1 USDC payment per batch) and consolidated error reporting matter.

## Known failure modes

- Missing required 'items' array returns a validation error
- Empty items array may return zero results with no errors
- Individual items within the batch may fail independently, reflected in error_count
- Malformed item objects may cause partial batch failures
- Payment failure via x402 protocol blocks the entire request
- Rate limiting or quota exhaustion may reject the request entirely

## 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 per-item LLM results, along with integer counts of how many items succeeded and how many encountered errors, allowing the caller to audit batch quality at a glance.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "items"
 ],
 "properties": {
  "task": {
   "type": "string"
  },
  "items": {
   "type": "array"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "results": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "error_count": {
   "type": "integer"
  },
  "success_count": {
   "type": "integer"
  }
 }
}
```

## More

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