# WhatChuNeed LLM Summarize

> WhatChuNeed LLM Summarize 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-14).

Summarizes a given block of text into a concise summary with key points and word count via pay-per-call API

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/llm/summarize
- Price: $0.05/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-summarize-c8b43027
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bXCjTwsDCLAXT1_JU-K4s

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-summarize-c8b43027 -d '<json body>'
```

Example prompt: Can you summarize the following article for me and pull out the key points? Keep the summary under 150 words: [paste of long article text here]

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call text summarization without committing to a long-term LLM subscription. It is well-suited for agents that occasionally need to condense long-form content (articles, documents, emails) and want structured output including key bullet points alongside the summary — especially in pipelines already using x402 micropayment infrastructure.

## Known failure modes

- Missing required 'text' field returns a validation error
- Text too long for processing may timeout or be truncated
- Invalid maxLength value (non-integer) causes a schema validation failure
- Network or infrastructure issues on Vercel may cause 500 errors
- Insufficient USDC balance or x402 payment failure prevents the call from completing

## 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 'summary' string with the condensed text, a 'key_points' array of the most important extracted points, and a 'word_count' integer representing the length of the generated summary.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "text"
 ],
 "properties": {
  "text": {
   "type": "string"
  },
  "maxLength": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "summary": {
   "type": "string"
  },
  "key_points": {
   "type": "array",
   "items": {
    "type": "string"
   }
  },
  "word_count": {
   "type": "integer"
  }
 }
}
```

## More

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