# AgentUtility Community Moderation Sentiment Analysis

> AgentUtility Community Moderation Sentiment Analysis is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Analyzes community content for moderation purposes, returning an overall sentiment label, numeric sentiment score, and confidence rating.

## Facts

- Endpoint: POST https://x402.agentutility.ai/community-moderation-sentiment
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentutility-community-moderation-sentiment-analysis-0e03dd9e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_muTAS6yQtNmXabc3nkbZv

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 agentutility-community-moderation-sentiment-analysis-0e03dd9e -d '<json body>'
```

Example prompt: Analyze the sentiment of this community post for moderation — 'This product is an absolute scam and the support team ignored my complaint for weeks!' — and tell me the overall sentiment, score, and how confident you are.

## When to prefer this

Use this endpoint when you need a lightweight, pay-per-call sentiment signal specifically tuned for community moderation contexts — particularly when you want a combined sentiment label, numeric score, and confidence in one call settled via USDC on Base, without managing a subscription or API key.

## Known failure modes

- Empty or missing input text returns a validation error
- Content that is too long may be truncated or rejected
- Ambiguous or multilingual text may produce low confidence scores
- Payment failure via x402 results in 402 response before processing
- Nonsensical or non-linguistic input may produce near-zero confidence

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Output

Returns a JSON object with three fields: overall_sentiment (e.g. 'mixed', 'positive', 'negative'), overall_score (a numeric value typically between -1 and 1 indicating sentiment polarity), and confidence (a float between 0 and 1 indicating model certainty).

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "properties": {
      "text": {
       "type": "string",
       "description": "Text to analyze. Max 12,000 chars."
      },
      "aspects": {
       "type": "array",
       "description": "Optional. Up to 15 aspect names (e.g. 'food', 'service') to score individually alongside overall sentiment."
      }
     },
     "required": [
      "text"
     ]
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "overall_sentiment": {
       "type": "string"
      },
      "overall_score": {
       "type": "number"
      },
      "confidence": {
       "type": "number"
      }
     }
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "confidence": 0.79,
  "overall_score": 0.14,
  "overall_sentiment": "mixed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-community-moderation-sentiment-analysis-0e03dd9e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
