# whatchuneed Sentiment Analysis

> whatchuneed Sentiment Analysis is a paid API for AI agents from whatchuneed.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Analyzes the sentiment of a given text input and returns a sentiment classification result

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/util/sentiment
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/whatchuneed-sentiment-analysis-0be5438b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IX2Zm_bmzqSDz1j7FatUm

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-sentiment-analysis-0be5438b -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this customer review: 'The delivery was extremely fast but the product quality was disappointing — not what I expected at all'?

## When to prefer this

Choose this endpoint when you need a pay-per-call sentiment analysis with no subscription or API key setup, and when you're already using the whatchuneed ecosystem for other utility endpoints. Ideal for low-volume or sporadic sentiment checks where per-call pricing at $0.03 USDC is cost-effective compared to subscription NLP services.

## Known failure modes

- Empty or missing 'input' field returns a validation error
- Extremely long input text may be truncated or rejected
- Non-English text may produce less reliable sentiment results
- Network timeouts or server errors return a failed status
- Payment failure via x402 protocol blocks 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 a JSON object containing a 'result' field with the sentiment classification (e.g. positive, negative, neutral) and associated data, along with a 'status' string indicating success or failure of the analysis.

## 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-sentiment-analysis-0be5438b/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)
