# convrgent.ai Communication Style Profiler

> convrgent.ai Communication Style Profiler is a paid API for AI agents from convrgent.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Analyzes a person's communication style — tone, directness, formality, persuasion triggers, trust signals, and message preferences — to guide how to effectively communicate with them.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/communication
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-cf7cde01
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HyUqXkAOHImyxuMD_6Qjl

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 convrgent-ai-cf7cde01 -d '<json body>'
```

Example prompt: Analyze the communication style of this person based on their writing samples and tell me how I should talk to them — their preferred tone, level of directness, formality, what builds trust with them, and what persuasion angles land best.

## When to prefer this

Use this endpoint when you need to understand how to effectively communicate with a specific individual — especially for sales outreach, negotiation, relationship building, or personalized messaging. Prefer over generic tone analyzers when you need actionable interpersonal guidance rather than just sentiment. Best when combined with existing text samples or prior conversation history from the person.

## Known failure modes

- Insufficient text samples provided — profile may lack confidence
- No identifiable writing signals — returns low-confidence or partial profile
- Person identifier not found in vault — cold start with limited data
- Input text too short to derive meaningful style signals
- Payment not processed — x402 payment required before response

## How this service works

Communication style profiler — tone, directness, formality, persuasion triggers, trust signals, writing style analysis, how to talk to this person, message preferences, interpersonal communication guidance

## Output

Returns a detailed communication style profile including tone (e.g. warm, analytical, assertive), directness score, formality level, identified persuasion triggers, trust signals that resonate with the individual, writing style characteristics, preferred message format, and actionable guidance on how to communicate effectively with this person.

## Example request

```json
{
 "context": {
  "industry": "technology",
  "relationship": "professional colleague",
  "interactionHistory": "6 months"
 },
 "textSamples": [
  "I appreciate your thorough analysis on this project. I'd like to understand the key metrics before we proceed.",
  "Thanks for the update. Can we schedule a quick call to discuss the timeline and next steps?",
  "I prefer written summaries over long meetings. Please send me the details so I can review at my own pace."
 ],
 "observations": {
  "responseTime": "within 24 hours",
  "preferredChannels": [
   "email",
   "written"
  ],
  "communicationFrequency": "moderate"
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "bodyType",
    "body",
    "method"
   ],
   "properties": {
    "body": {
     "properties": {
      "natal": {
       "type": "object"
      },
      "context": {
       "type": "object"
      },
      "textSamples": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "observations": {
       "type": "object"
      }
     }
    },
    "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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tone": "analytical-warm",
  "formality": 0.6,
  "directness": 0.7,
  "trustSignals": [
   "consistency",
   "acknowledgment"
  ],
  "persuasionTriggers": [
   "data",
   "logic",
   "empathy"
  ],
  "communicationGuidance": "Lead with data, acknowledge emotions..."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-cf7cde01/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from convrgent.ai](https://www.zero.xyz/host/convrgent.ai/llms.txt)
