# whatchuneed Paraphrase API

> whatchuneed Paraphrase API 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-13).

Rewrites an input text into alternative wording while preserving its original meaning

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/paraphrase
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-paraphrase-api-270b9112
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1v-qlEhxhUIZLENCX2u3P

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-paraphrase-api-270b9112 -d '<json body>'
```

Example prompt: Can you paraphrase this paragraph for me so it reads differently but keeps the same meaning: 'Our team is committed to delivering high-quality software solutions that meet customer expectations and drive business value.'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call paraphrase operation without committing to a full LLM subscription or managing API keys for a dedicated NLP service. It is well-suited for agents that occasionally need to rephrase text as part of a larger workflow, especially when cost predictability ($0.01 per call) matters more than volume discounts.

## Known failure modes

- Empty or missing 'input' field returns a validation error
- Input text that is too long may be truncated or rejected
- Non-text or malformed input may produce unexpected output
- Payment failure via x402 protocol results in 402 response before processing
- Ambiguous or highly technical input may yield poor-quality paraphrases

## 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 result object containing the paraphrased version of the input text, along with a status field indicating success or failure of the operation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Request input"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "result": {
   "type": "object",
   "description": "Response data"
  },
  "status": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/whatchuneed-paraphrase-api-270b9112/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)
