# whatchuneed Sentiment Analysis

> whatchuneed Sentiment Analysis 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).

Analyzes the sentiment of a given text input, returning a sentiment classification and result

## Facts

- Endpoint: POST https://whatchuneed.vercel.app/api/alpha/sentiment
- 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-sentiment-analysis-2e749419
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dKH_guTduo5RL5pLTYen3

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-2e749419 -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this customer review: 'The product arrived quickly but the packaging was damaged and customer support was unhelpful'? Tell me if it's positive, negative, or neutral.

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call sentiment classification for arbitrary text without setting up or managing your own NLP infrastructure. It is well-suited for agents that need on-demand sentiment scoring for individual text snippets — reviews, tweets, support tickets — without committing to a subscription model. Prefer alternatives if you need batch processing of large volumes of text, domain-specific sentiment tuning, or detailed emotion breakdowns beyond polarity.

## Known failure modes

- Empty or missing 'input' field returns a validation error
- Input text that is too long may be truncated or rejected
- Ambiguous or non-linguistic input may produce unreliable sentiment results
- Network or payment authorization failure returns a 402 Payment Required response
- Service downtime or backend errors return a 5xx status

## 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 'status' field indicating success or failure and a 'result' object containing the sentiment analysis outcome (e.g. polarity classification such as positive/negative/neutral and potentially a confidence score or detailed breakdown)

## 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-2e749419/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)
