# AgentUtility Churn Risk Sentiment

> AgentUtility Churn Risk 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 for churn-risk sentiment, returning an overall sentiment label, numeric score, and confidence level for customer retention use cases.

## Facts

- Endpoint: POST https://x402.agentutility.ai/churn-risk-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-churn-risk-sentiment-63c213fa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QdXHCzNgP_68cfnmECgf-

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-churn-risk-sentiment-63c213fa -d '<json body>'
```

Example prompt: Analyze this customer message for churn risk sentiment and give me the overall sentiment label, score, and confidence: 'Your service has been incredibly disappointing lately and I'm seriously considering canceling my subscription.'

## When to prefer this

Choose this endpoint when you need a churn-specific sentiment signal rather than generic sentiment analysis — it is calibrated for customer retention contexts and returns a structured confidence score alongside the sentiment label, payable per-call in USDC with no subscription required.

## Known failure modes

- Empty or missing input text returns a 400 error
- Input text too long may be truncated or rejected
- Payment failure via x402 returns 402 Payment Required
- Ambiguous or very short text may yield low confidence scores
- Non-English text may produce unreliable sentiment scores

## 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. 'negative'), overall_score (a float from -1 to 1 indicating sentiment polarity), and confidence (a float from 0 to 1 indicating model certainty in the classification).

## 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.86,
  "overall_score": -0.72,
  "overall_sentiment": "negative"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-churn-risk-sentiment-63c213fa/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)
