# AgentUtility Voice of Customer Sentiment

> AgentUtility Voice of Customer Sentiment 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 text input to produce an overall sentiment score, sentiment label, and confidence rating for voice-of-customer data

## Facts

- Endpoint: POST https://x402.agentutility.ai/voice-of-customer-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-voice-of-customer-sentiment-bad24541
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4DTp6PuvtVV5RRa95WE37

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-voice-of-customer-sentiment-bad24541 -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this customer review and tell me whether it's positive, negative, or mixed along with a confidence score: 'The onboarding was smooth but the support team took days to respond and never fully resolved my issue.'?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call sentiment classification with a confidence score on customer verbatim feedback, reviews, or survey responses. It costs only $0.01 USDC per call and settles on Base via x402, making it suitable for high-volume agent pipelines without subscription overhead.

## Known failure modes

- Empty or missing text input returns validation error
- Non-text or binary payload causes parse failure
- Input too long may exceed token limits and return truncation or error
- Payment not included or insufficient USDC triggers x402 payment-required response
- Network timeout if input is extremely large

## 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 (string label such as 'mixed', 'positive', or 'negative'), overall_score (float representing sentiment polarity, e.g. 0.03), and confidence (float 0–1 indicating model certainty, e.g. 0.84).

## 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.84,
  "overall_score": 0.03,
  "overall_sentiment": "mixed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-voice-of-customer-sentiment-bad24541/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)
