# whatchuneed Content Clean API

> whatchuneed Content Clean API 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-15).

Cleans and processes content input text, returning a structured result via a pay-per-call API powered by the x402 protocol.

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/content/clean
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-content-clean-api-5ae5e1ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NTSPUD8ryrFpn7z4yBO0G

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-content-clean-api-5ae5e1ad -d '<json body>'
```

Example prompt: Can you clean up this raw scraped content for me? Here's the messy text I need normalized: 'Hello!! <b>World</b>   this is   badly   formatted text with lots of  extra spaces and HTML tags.'

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call text cleaning or content normalization operation without maintaining a subscription. Ideal for agents that occasionally need to clean raw text, scraped content, or noisy user input as part of a larger pipeline. Best suited for low-volume, on-demand preprocessing tasks where per-call pricing via x402 USDC micropayments is acceptable.

## Known failure modes

- Missing or empty 'input' field returns a validation error
- Malformed JSON body causes 400-level error
- Payment not completed via x402 protocol results in 402 Payment Required response
- Very long input strings may exceed processing limits
- Ambiguous or unsupported content types may return partial or unexpected results

## 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 with a 'result' field containing the cleaned/processed content data and 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-content-clean-api-5ae5e1ad/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)
