# AgentUtility Sales Call Sentiment Analyzer

> AgentUtility Sales Call Sentiment Analyzer 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 the sentiment of a sales call transcript or audio, returning an overall sentiment label and confidence score

## Facts

- Endpoint: POST https://x402.agentutility.ai/sales-call-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-sales-call-sentiment-analyzer-bc1078e9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e8AnC5nalBWug65qI0mM7

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-sales-call-sentiment-analyzer-bc1078e9 -d '<json body>'
```

Example prompt: Can you analyze the sentiment of this sales call transcript and tell me whether it was positive, negative, or mixed — and give me an overall sentiment score? Here's the transcript: 'Thanks for reaching out, I'm somewhat interested but I have some concerns about pricing...'

## When to prefer this

Choose this endpoint when you need a quick, pay-per-call sentiment score on a sales call transcript without setting up a full NLP pipeline. Ideal for AI agents automating sales call review, CRM enrichment, or coaching workflows where USDC micropayments per call are acceptable. Prefer over general-purpose sentiment APIs when you specifically want sales-context sentiment scoring with a normalized 0–1 score output.

## Known failure modes

- Empty or missing transcript/audio input returns an error
- Transcript too long may be truncated or rejected
- Non-sales conversation content may yield low-confidence or unexpected results
- Payment failure via x402 returns 402 status before processing
- Malformed JSON request body returns 400 error

## 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 an overall_score (0–1 float indicating sentiment intensity) and an overall_sentiment label (e.g. 'mixed', 'positive', 'negative') reflecting the tone of the sales call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "text"
     ],
     "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."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "overall_score": {
       "type": "number"
      },
      "overall_sentiment": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "overall_score": 0.08,
  "overall_sentiment": "mixed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentutility-sales-call-sentiment-analyzer-bc1078e9/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)
