# klymax402 Sentiment Analyzer

> klymax402 Sentiment Analyzer is a paid API for AI agents from klymax402.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Analyzes text for sentiment polarity, emotional content, and confidence score

## Facts

- Endpoint: GET https://klymax402.com/api/sentiment-analyzer/api/analyze
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/klymax402-sentiment-analyzer-2e81aa86
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jJza73aPIvuz3zi9j_IP9

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 klymax402-sentiment-analyzer-2e81aa86
```

Example prompt: Can you analyze the sentiment of this customer review and tell me the score, emotions detected, and how confident you are: 'The delivery was incredibly fast but the packaging was completely damaged'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call sentiment classification with emotion breakdown and confidence scoring, without managing API keys or monthly subscriptions. It is well-suited for AI agents that occasionally need sentiment signals across diverse text types (reviews, social posts, support tickets) and want a single MCP-accessible endpoint with USDC micropayments on Base at $0.015 per call.

## Known failure modes

- Empty or missing text parameter returns an error or undefined behavior
- Very short or ambiguous text may yield low confidence scores
- Non-English text may produce inaccurate sentiment or emotion labels
- Extremely long text inputs may be truncated or cause timeout
- Sarcasm or irony may be misclassified as positive sentiment

## How this service works

One MCP endpoint gives your AI agent access to 100 APIs -- crypto, DeFi, web, AI, finance and utilities. No API keys, USDC on Base from $0.003/call.

## Output

Returns a JSON object containing the original text, a numeric sentiment score, a sentiment label (e.g. positive/negative/neutral), a breakdown of detected emotions as key-value pairs, and a confidence value between 0 and 1 indicating how certain the model is in its classification.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "text": {
   "type": "string",
   "description": "The text to analyze for sentiment"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "example",
  "score": 1,
  "emotions": {},
  "sentiment": "example",
  "confidence": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/klymax402-sentiment-analyzer-2e81aa86/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from klymax402.com](https://www.zero.xyz/host/klymax402.com/llms.txt)
