# Convrgent AI — Multi-Person Conflict Prediction

> Convrgent AI — Multi-Person Conflict Prediction is a paid API for AI agents from convrgent.ai, paid per call via x402, $2/call, status unknown (last checked 2026-09-13).

Analyzes personality profiles of multiple people to predict friction points, disagreement triggers, personality clashes, and tension risks, and returns dispute prevention strategies and relationship risk assessments.

## Facts

- Endpoint: POST https://convrgent.ai/api/kyh/multi/conflict
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/convrgent-ai-46d01360
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nJE110OMaESZTB8RZaUyH

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

Example prompt: I have two people on my team — Alex, who is highly analytical and introverted, and Jordan, who is spontaneous and emotionally expressive — can you predict the friction points and disagreement triggers between them and give me strategies to prevent conflict before our big project kickoff?

## When to prefer this

Choose this endpoint when you need to proactively identify and prevent interpersonal conflict between two or more specific people before it occurs — such as team formation, partnership evaluation, negotiation prep, or relationship risk assessment. Prefer this over general relationship health scoring when the goal is forward-looking conflict prediction rather than retrospective health measurement.

## Known failure modes

- Insufficient personality data for one or more individuals returns degraded or low-confidence predictions
- Missing required profile fields may return a 400 validation error
- If vault profile IDs are not found, returns a profile-not-found error
- Ambiguous or contradictory input signals may produce low-confidence conflict forecasts
- Rate limiting or payment failure via x402 returns a 402 or 429 error

## How this service works

Conflict prediction — friction points, disagreement triggers, personality clash analysis, tension forecasting, dispute prevention strategies, relationship risk assessment, proactive conflict resolution.

## Output

Returns a structured conflict prediction report covering identified friction points, specific disagreement triggers, personality clash dimensions, tension forecasting, relationship risk score, and actionable dispute prevention strategies for the analyzed group of people.

## 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"
     ],
     "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": {
  "confidence": 0.72,
  "overallRisk": 0.45,
  "conflictDynamics": {
   "recovery": "...",
   "escalation": "...",
   "deEscalation": "..."
  },
  "predictedFrictionPoints": [
   {
    "trigger": "different planning styles",
    "severity": 0.7
   }
  ]
 }
}
```

## More

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