# Convrgent.ai Communication Bridge — Mediation Guide

> Convrgent.ai Communication Bridge — Mediation Guide is a paid API for AI agents from convrgent.ai, paid per call via x402, $2/call, status unknown (last checked 2026-09-15).

Generates a diplomatic mediation guide for how to talk to one person about another, including interpersonal framing, relationship-sensitive messaging, and conflict-aware communication strategy.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/multi/bridge
- Price: $2/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-c56b08d4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6r2aAqUCJnxNgsNzDDbHD

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-c56b08d4 -d '<json body>'
```

Example prompt: I need to talk to my sister about my mom's recent behavior — can you generate a mediation guide for how to frame that conversation diplomatically, taking into account that my sister is conflict-avoidant and my mom tends to get defensive?

## When to prefer this

Choose this endpoint when an AI agent needs to help a user navigate a three-party interpersonal situation — specifically how to talk to one person about another. It is optimized for conflict-sensitive, diplomatically framed communication guidance rather than direct message drafting or one-on-one communication coaching. Best used when both parties' profiles or behavioral context are available as inputs to personalize the mediation strategy.

## Known failure modes

- Missing required profile data for Person A or Person B returns 400 with a field validation error
- Insufficient context about the relationship or conflict topic may yield generic, low-specificity guidance
- If wallet/payment authorization fails, returns 402 Payment Required
- Overly vague communication goals may produce broad advice without actionable framing
- Rate limiting or service unavailability returns 429 or 503

## How this service works

Communication bridge — mediation guide for agent-facilitated conversations. How to talk to Person A about Person B, interpersonal framing, diplomatic messaging, relationship mediation, conflict-sensitive communication.

## Output

Returns a structured mediation guide including recommended framing, diplomatic messaging approach, interpersonal sensitivity notes, and step-by-step communication strategy for how Person A should address topics related to Person B, tailored to both parties' psychological profiles and the relational context.

## 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": {
     "required": [
      "humanA",
      "humanB",
      "scenario"
     ],
     "properties": {
      "humanA": {
       "type": "object",
       "properties": {
        "birthData": {
         "type": "object",
         "required": [
          "year",
          "month",
          "day",
          "location"
         ],
         "properties": {
          "day": {
           "type": "integer"
          },
          "hour": {
           "type": "integer",
           "description": "Highly recommended. Defaults to 12 if omitted."
          },
          "year": {
           "type": "integer"
          },
          "month": {
           "type": "integer"
          },
          "minute": {
           "type": "integer",
           "description": "Defaults to 0 if omitted."
          },
          "latitude": {
           "type": "number",
           "description": "Optional override"
          },
          "location": {
           "type": "string",
           "description": "City and country. Coordinates auto-resolved."
          },
          "timezone": {
           "type": "number",
           "description": "Optional — auto-resolved from location"
          },
          "longitude": {
           "type": "number",
           "description": "Optional override"
          }
         }
        },
        "responses": {
         "type": "object"
        },
        "textSamples": {
         "type": "array",
         "items": {
          "type": "object",
          "required": [
           "text"
          ],
          "properties": {
           "text": {
            "type": "string"
           },
           "context": {
            "type": "string"
           }
          }
         }
        },
        "observations": {
         "type": "object"
        }
       }
      },
      "humanB": {
       "type": "object",
       "properties": {
        "birthData": {
         "type": "object",
         "required": [
          "year",
          "month",
          "day",
          "location"
         ],
         "properties": {
          "day": {
           "type": "integer"
          },
          "hour": {
           "type": "integer",
           "description": "Highly recommended. Defaults to 12 if omitted."

… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "approach": "data-first, empathetic close",
  "scenario": "delivering-feedback",
  "confidence": 0.78,
  "riskFactors": [
   "..."
  ],
  "framingGuide": {
   "tone": "direct-warm",
   "avoid": [
    "..."
   ],
   "openWith": "..."
  },
  "examplePhrasing": [
   "..."
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/convrgent-ai-c56b08d4/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)
